implemented find in page

This commit is contained in:
Fabian Freund
2024-08-14 11:43:41 +02:00
parent 1dd37f44b6
commit 60ad009bb0
6 changed files with 153 additions and 2 deletions
@@ -125,3 +125,15 @@ class ActiveChatModel extends _$ActiveChatModel {
return ChatModel.gpt4o;
}
}
@Riverpod(keepAlive: true)
class ShowFindInPage extends _$ShowFindInPage {
void update(bool show) {
state = show;
}
@override
bool build() {
return false;
}
}