Shows how to use some of the best practices when implementing Flutter application. Like:
- Project directory structure
- ChangeNotifier for simple state management
- Provider package to manage dependencies
After setting up Flutter for your operating system. In a terminal run:
git clone [email protected]:jjmutumi/todo.git
cd todo
flutter pub get
To run in development, in terminal run:
flutter run
You can get a release version to run on a device with:
flutter build apk --release --shrink --target-platform android-arm,android-arm64,android-x64 --split-per-abi