Top "Flutter" questions

Flutter is an open-source UI software development kit created by Google.

How do you detect the host platform from Dart code?

For UI that should differ slightly on iOS and Android, i.e. on different platforms, there must be a way …

dart flutter
How to check the installed version of Flutter?

How do I find the version of Flutter I have installed on my computer?

flutter dart version flutter-sdk
Programmatically scrolling to the end of a ListView

I have a scrollable ListView where the number of items can change dynamically. Whenever a new item is added to …

flutter flutter-layout flutter-animation
Flutter/Dart - Open a view after a delay

I'm trying to find a solution to open a view after a delay in a loading view. I have a …

flutter dart flutter-layout delay flutter-widget
How to add clear button to TextField Widget

Is there a proper way to add a clear button to the TextField? Just like this picture from Material design …

flutter dart
Flutter run error : You have not accepted the license agreements

I'm developing android and ios app with Google flutter. when I add a new dependency like shared_preferences to pubspec.…

android flutter android-sdk-tools
Flutter, render widget after async call

I would like to render a widget that needs an HTTP call to gather some data. Got the following code (…

async-await dart flutter
Enumerate or map through a list with index and value in Dart

In dart there any equivalent to the common: enumerate(List) -> Iterator((index, value) => f) or List.enumerate() …

dart flutter
Flutter - setState not updating inner Stateful Widget

Basically I am trying to make an app whose content will be updated with an async function that takes information …

android dart flutter dart-async
How to deactivate or override the Android "BACK" button, in Flutter?

Is there a way to deactivate the Android back button when on a specific page? class WakeUpApp extends StatelessWidget { @override …

flutter