Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 593 Bytes

TUTORIAL.md

File metadata and controls

28 lines (17 loc) · 593 Bytes

Tutorial

  • flutter create first_app

  • Open the project in android studio

  • Click on Install Dart Plugin in android studio

  • Restart android studio and Open bottom right notification suggesstion, and click configure plugin hit ok

  • Select the emulator of your choice and hit play at the top.

  • flutter doctor

  • flutter run

  • Hit r on terminal to hot reload

  • Hit h on terminal to see more options

In case your project build fails, Try running these commands in following order.

flutter pub cache clean
flutter clean
flutter pub get
flutter run