initial
This commit is contained in:
parent
ae29162b5d
commit
64dd38f7aa
6 changed files with 265 additions and 2 deletions
0
lib/controllers/client_controller.dart
Normal file
0
lib/controllers/client_controller.dart
Normal file
12
lib/controllers/last_synced_controller.dart
Normal file
12
lib/controllers/last_synced_controller.dart
Normal file
|
@ -0,0 +1,12 @@
|
|||
import "package:riverpod/riverpod.dart";
|
||||
|
||||
class LastSyncedController extends Notifier<String?> {
|
||||
@override
|
||||
String? build() => null;
|
||||
|
||||
void set(String value) => state = value;
|
||||
|
||||
static final provider = NotifierProvider<LastSyncedController, String?>(
|
||||
LastSyncedController.new,
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue