November
26th,
2018
Recently I found that Flutter is interesting so I decide to start learn it and put some of my notes about Flutter and Dart here.
- Use arrow notation for one-line functions or methods. For example:
void main() => runApp(MyApp());
- A widget’s main job is to provide a build() method that describes how to display the widget in terms of other, lower level widgets.