Top "Flutter" questions

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

Dart: mapping a list (list.map)

I have a list of Strings, e.g., var moviesTitles = ['Inception', 'Heat', 'Spider Man']; and wanted to use moviesTitles.map …

functional-programming dart flutter
How to save to local storage using Flutter?

In Android, if I have the information I want to persist across sessions I know I can use SharedPreferences or …

flutter local-storage
Flutter screen size

I've created a new application on flutter, and I've had problems with the screen sizes when switching between different devices. …

dart screen flutter screen-size
How to run code after some delay in Flutter?

I'd like to execute a function after a certain delay after my Widget is built. What's the idiomatic way of …

flutter
How do I supply an initial value to a text field?

I'd like to supply an initial value to a text field and redraw it with an empty value to clear …

dart flutter
How to scroll page in flutter

My code for a page is like this. i need to scroll part below appbar. @override Widget build(BuildContext context) { …

dart scrollview flutter flutter-layout
Flutter: RenderBox was not laid out

I'm trying to create a ListView but when I import the list_form.dart class i get this error. Maybe …

dart flutter flutter-layout
Set the space between Elements in Row Flutter

Code: new Container( alignment: FractionalOffset.center, child: new Row( mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: <Widget>[ new FlatButton( child: new …

flutter dart flutter-layout
Custom Card Shape Flutter SDK

I just started learning Flutter and I have developed an app with GridView. GridView items are Card. Default card shape …

flutter flutter-layout
Flutter - Layout a Grid

I am trying to layout a 4x4 grid of tiles in flutter. I managed to do it with columns and …

flutter dart flutter-layout