fix(mobile): add missed file

This commit is contained in:
Peter Ombodi 2026-08-07 18:06:57 +03:00
parent 00570557a6
commit 3db323f158

View file

@ -0,0 +1,14 @@
import 'package:hooks_riverpod/hooks_riverpod.dart';
class ViewIntentTrashScopeNotifier extends Notifier<bool> {
@override
bool build() => false;
void set(bool isTrashScoped) => state = isTrashScoped;
void clear() => state = false;
}
final viewIntentTrashScopeProvider = NotifierProvider<ViewIntentTrashScopeNotifier, bool>(
ViewIntentTrashScopeNotifier.new,
);