mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-07-15 02:46:03 +08:00
Add new flutter example of todo app with provider (#78)
This commit is contained in:
16
todo_list_using_provider/lib/models/todo.dart
Normal file
16
todo_list_using_provider/lib/models/todo.dart
Normal file
@ -0,0 +1,16 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class Todo extends ChangeNotifier {
|
||||
final String id;
|
||||
String title;
|
||||
bool done;
|
||||
|
||||
Todo({@required this.id, this.title, this.done = false});
|
||||
|
||||
|
||||
/// Toggles the value of the item and notify to listeners
|
||||
void toggle() {
|
||||
this.done = !this.done;
|
||||
notifyListeners();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user