Thuta Learning
BasicMobile Developmentbeginner

Get Started (Setup)

Relax. We'll talk through this in plain words — no textbook voice.

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 run
You 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.

Easy traps

  • If PATH isn't set up, your terminal may say it doesn't recognize the flutter command. Add the SDK folder to your PATH and restart your terminal.
Get Started (Setup) | Thuta Learning