Running the App
Development Mode
To run the app in development mode:
Make sure you have a device/emulator connected:
bashflutter devices
Run the app:
bashflutter run
Debug Mode
For debugging purposes:
bash
flutter run --debug
Release Mode (Local Testing)
To test the release version locally:
bash
flutter run --release
Profile Mode
For performance profiling:
bash
flutter run --profile
Common Issues and Solutions
Missing Dependencies
bashflutter pub get
Clean Build
bashflutter clean flutter pub get flutter run
Hot Reload/Restart
- Press
r
for hot reload - Press
R
for hot restart - Press
q
to quit
- Press