Previewing Flutter in the browser only gets you so far — if you want to actually build apps, you need a local setup. Setup involves the Flutter SDK, an editor, an emulator/device, and command-line tools. The initial setup can feel a bit involved, but once it's done, creating new projects becomes much faster.
dart
# Flutter installation စစ်ရန်
flutter doctor
# Flutter project အသစ်ဖန်တီးရန်
flutter create my_awesome_app
# Project folder ထဲဝင်ရန်
cd my_awesome_app
# App ကို emulator/device ပေါ် run ရန်
flutter runYou should see
If everything runs smoothly, the Flutter demo counter app will show up.What's Next
Once setup is done, continue on to the Intro to Dart lesson to understand the basics of the Dart language.