A simple Todo application built using Flutter and core Widgets.
- Add new tasks.
- Mark tasks as completed.
- Delete tasks with a swipe action using the
flutter_slidablepackage. - Manage task data locally using a
Listthat tracks task content and completion status.
flutter_slidable: Enables swipe actions on task tiles.
- Each task is represented as a tile.
- Task tiles are wrapped with
Slidableto enable swipe gestures. - Swipe actions include a delete option using
SlidableAction. - Common methods are implemented for:
- Adding new tasks.
- Updating task completion status (done/undone).
- Clean and minimal design.
- Tasks displayed using
ListView. - Interactive tiles with smooth swipe-to-delete functionality.
- Intuitive and simple user experience.
- Clone the repository.
- Run
flutter pub get. - Launch the app using
flutter run.
- Integrate with a database for persistent storage.✔️
- Add more features such as editing tasks etc.✔️
- Add scheduled tasks and notification.