git clone <repository-url>
cd mobileflutter pub get# Run on connected device/emulator
flutter run
# Run on specific platform
flutter run -d web-server --web-hostname 0.0.0.0 --web-port 8080
flutter run -d windows # Windows
flutter run -d android # Android
flutter run -d ios # iOSflutter pub add package_name# Run static analysis
flutter analyze
# Format code
flutter format .
# Check outdated packages
flutter pub outdatedDuring development:
r- Hot reload (fast, preserves state)R- Hot restart (slower, resets state)q- Quit
# Run all tests
flutter test
# Run specific test file
flutter test test/widget_test.dart
# Run with coverage
flutter test --coverage1. Package Conflicts
flutter clean
flutter pub get2. Font Not Loading
flutter clean
flutter pub get
flutter run# Check Flutter installation
flutter doctor
# List connected devices
flutter devices
# View logs
flutter logs
# Clean build artifacts
flutter clean- Create a feature branch:
git checkout -b feature/your-feature - Make changes and commit:
git commit -m "Add your feature" - Push to branch:
git push origin feature/your-feature - Create Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
- Flutter Documentation
- Material Design 3
- Google Fonts
- Figma design team for color tokens and UI specifications
Built with ❤️ using Flutter