Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 544 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 544 Bytes

Simple Todo App

This simple todo app has an add, edit, and delete functionality. It uses a provider for state management

Folder Structure

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