Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 827 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 827 Bytes

Flutter Todo

Introduction

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

Installing

After setting up Flutter for your operating system. In a terminal run:

git clone [email protected]:jjmutumi/todo.git
cd todo
flutter pub get

Running

To run in development, in terminal run:

flutter run

Release version

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