mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
22 lines
394 B
Dart
22 lines
394 B
Dart
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||
|
|
||
|
final showControlsProvider = StateNotifierProvider<ShowControls, bool>((ref) {
|
||
|
return ShowControls(ref);
|
||
|
});
|
||
|
|
||
|
class ShowControls extends StateNotifier<bool> {
|
||
|
ShowControls(this.ref) : super(true);
|
||
|
|
||
|
final Ref ref;
|
||
|
|
||
|
bool get show => state;
|
||
|
|
||
|
set show(bool value) {
|
||
|
state = value;
|
||
|
}
|
||
|
|
||
|
void toggle() {
|
||
|
state = !state;
|
||
|
}
|
||
|
}
|