Top "Dart" questions

Dart is a class-based, statically(& strongly)-typed programming language for building web and mobile applications.

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
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
How do you build a Singleton in Dart?

The singleton pattern ensures only one instance of a class is ever created. How do I build this in Dart?

dart singleton
Flutter: Run method on Widget build complete

I would like to be able to run functions once a Widget has finished building/loading but I am unsure …

dart flutter
Check whether there is an Internet connection available on Flutter app

I have a network call to be executed. But before doing that I need to check whether the device have …

flutter dart flutter-plugin
How can I dismiss the on screen keyboard?

I am collecting user input with a TextFormField and when the user presses a FloatingActionButton indicating they are done, I …

dart flutter
How to add a ListView to a Column in Flutter?

I'm trying to construct a simple login page for my Flutter app. I've successfully built the TextFields and log in/…

flutter listview dart flutter-layout flutter-widget
Space between Column's children in Flutter

I have a Column widget with two TextField widgets as children and I want to have some space between both …

dart flutter flutter-layout
Display SnackBar in Flutter

I want to display a simple SnackBar inside Flutter's stateful widget. My application creates new instance of MaterialApp with a …

dart android-snackbar snackbar flutter