Skip to content

a todo app that can track your daily routine, implemented by flutter

Notifications You must be signed in to change notification settings

huangwei4478/flutter_todo_app

Repository files navigation

flutter_todo_app

a todo app that can track your daily routine, implemented by flutter

how it implements

- MVVM + RxDart + simplified version of Clean Architecture;
- support data persistency on both iOS and android platforms;
- use Provider as a dependency injection method, to provide viewModel on any layer of the widget tree
- tailored color scheme, look so cool!
getIt.registerSingleton<AppModel>(AppModelImplementation());        // setup singleton
getIt.registerLazySingleton<RESTAPI>(() =>RestAPIImplementation()); // setup singleton for RestAPI
context.read<CategoryViewModel>().createCategory(title)             // get viewModel anywhere you want providing a context object

how to run

flutter run

or

flutter build apk --target-platform android-arm64 --split-per-abi

to export 64-bit arm android apk

screenshot01.png screenshot02.png

About

a todo app that can track your daily routine, implemented by flutter

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published