This simple todo app has an add, edit, and delete functionality. It uses a provider for state management
lib
├───models
│ └───todo_model.dart
├───providers
│ └───todo_provider.dart
├───screens
│ ├───modal_todo.dart
│ └───todo_page.dart
└───main.dart
- Models - contains the data model used
- Providers - contains the Todo provider that contains the data and method logic
- Screens - contains the screen/widgets used