forked from Nexus/nexus
treewide(refactor): rename files to follow the same style
This commit is contained in:
parent
15d441e4c4
commit
7992f0e815
81 changed files with 167 additions and 167 deletions
11
lib/controllers/init_complete.dart
Normal file
11
lib/controllers/init_complete.dart
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import "package:flutter_riverpod/flutter_riverpod.dart";
|
||||
|
||||
class InitCompleteController extends Notifier<bool> {
|
||||
@override
|
||||
bool build() => false;
|
||||
void complete() => state = true;
|
||||
|
||||
static final provider = NotifierProvider<InitCompleteController, bool>(
|
||||
InitCompleteController.new,
|
||||
);
|
||||
}
|
||||
Loading…
Reference in a new issue