fix issues with $extra, use query parameter

This commit is contained in:
Fabian Freund
2025-09-27 11:14:42 +02:00
parent e360342a6d
commit 8325748d29
3 changed files with 40 additions and 12 deletions
+2 -2
View File
@@ -99,9 +99,9 @@ class MainApp extends HookConsumerWidget {
ref.read(selectedTabTypeProvider) ??
settings.defaultCreateTabType,
searchText: sharedContent.text,
$extra: true, //launched from intent
launchedFromIntent: true, //launched from intent
);
await router.push(route.location, extra: route.$extra);
await router.push(route.location);
}
}
});