Flutter Introduction
Flutter
Flutter let's you design pixel perfect mobile applications that are App store and Google Play ready. Code in one language and ship in the same day. Flutter is more robust than React native or standard mobile development while also not relying on primitive system specific components.
Installation
Install it here.
Check for installation success by running flutter docter from your shell
1 flutter doctor 2
Create and run a simple Flutter app
To create your first Flutter app and test your setup, follow these steps:
Create a new Flutter app by running the following from the command line:
1 flutter create my_app 2
A my_app directory is created, containing Flutter’s starter app. Enter this directory:
1 cd my_app 2
To launch the app in the Simulator, ensure that the Simulator is running and enter:
1 flutter run 2
Learn more about it here.