initial onboarding

This commit is contained in:
Fabian Freund
2025-06-14 23:33:24 +02:00
parent 11a1e8e5f5
commit bce9f0b3a5
26 changed files with 918 additions and 12 deletions
@@ -22,7 +22,7 @@ GeckoSelectionActionService selectionActionService(Ref ref) {
unawaited(
service.setActions([
SearchAction((text) async {
final router = ref.read(routerProvider);
final router = await ref.read(routerProvider.future);
final isCurrentPrivate =
ref.read(selectedTabStateProvider)?.isPrivate ?? false;
final route = SearchRoute(
@@ -7,7 +7,7 @@ part of 'providers.dart';
// **************************************************************************
String _$selectionActionServiceHash() =>
r'c45737a0a403bff1bdb1931b89701300f8dc3726';
r'456bab83920ae78969bece514d5524e2445e06b6';
/// See also [selectionActionService].
@ProviderFor(selectionActionService)