Creating Your First Flutter App — a practical guide to create first Flutter app with clear examples you can reuse in real projects.
Flutter Tutorial Series (8/107). Prefer one article? Read the complete Flutter tutorial.
Short description
Use the CLI to scaffold a project, open it in your IDE, and run on emulator/device.
Steps
- Run flutter create.
- Start an emulator or connect a device.
- Run flutter run and try hot reload.
Create & run
flutter create hello_flutter
cd hello_flutter
flutter run