Transfer repository from Gitlab
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||||
|
||||
enum AppStateEnum {
|
||||
active,
|
||||
inactive,
|
||||
paused,
|
||||
resumed,
|
||||
detached,
|
||||
}
|
||||
|
||||
final appStateProvider = StateProvider<AppStateEnum>((ref) {
|
||||
return AppStateEnum.active;
|
||||
});
|
||||
Reference in New Issue
Block a user