https://github.com/samhess/flutter-starter
Flutter starter project with navigation
https://github.com/samhess/flutter-starter
Last synced: 3 months ago
JSON representation
Flutter starter project with navigation
- Host: GitHub
- URL: https://github.com/samhess/flutter-starter
- Owner: samhess
- Created: 2025-02-19T15:04:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-25T15:37:04.000Z (over 1 year ago)
- Last Synced: 2025-02-25T16:33:11.452Z (over 1 year ago)
- Language: Dart
- Homepage:
- Size: 306 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flutter Starter
This project is a starting point for a cross-platform Flutter application. It runs a [MaterialApp](https://api.flutter.dev/flutter/material/MaterialApp-class.html) with 5 screens/pages.
The responsive layout includes:
- Top [AppBar](https://api.flutter.dev/flutter/material/AppBar-class.html) (small)
- Left [Drawer](https://api.flutter.dev/flutter/material/Drawer-class.html) (small)
- Bottom [NavigationBar](https://api.flutter.dev/flutter/material/NavigationBar-class.html) (small)
- Extented Left [NavigationRail](https://api.flutter.dev/flutter/material/NavigationRail-class.html) (large)
- Body with sample content
- Counter
- Country (get random country data from an external API)
- Sunflower
- Brick Braker (simplified brick-breaker game)
- Words (generate compunded words)
### Development
```sh
flutter pub outdated
flutter pub upgrade --major-versions
flutter devices
flutter run
# Chrome
flutter run -d chrome
# Windows
flutter run -d windows
# Android Emulator
flutter emulators --launch Medium_Phone_API_35
flutter run -d emulator-5554
```
### Resources
A few resources to get you started if this is your first Flutter project:
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
For help getting started with Flutter development, view the
[online documentation](https://docs.flutter.dev/), which offers tutorials,
samples, guidance on mobile development, and a full API reference.