A new Flutter project.
This is a simple ToDo app built with Flutter. The app allows users to add and delete items from their to-do list. It demonstrates basic CRUD (Create, Read, Update, Delete) operations using Flutter's state management and widget system.
- Add Items: Add new tasks to your to-do list.
- Delete Items: Remove tasks from your list.
Prerequisites
- Flutter installed on your machine. If not, follow the Flutter installation guide.
- A code editor such as Visual Studio Code or Android Studio.
- git clone https://github.com/hambugger/simple_todo_app.git
- cd simple_todo_app
flutter pub get flutter_slidable:^3.1.1
Flutter run
- Add a Task: Enter a task name in the input field and press the "Add" button to add it to your to-do list.
- Delete a Task: Swipe left on a task to reveal the delete button and tap it to remove the task from the list.
Hambugger