Closed angwandi closed 5 months ago
I have also tried the code below but with no success :
void openAppLink(Uri uri) {
_navigatorKey.currentState?.pushNamed(uri.fragment);
}```
This issue isn't related to this package.
Despite this and to give you some hints, you try to navigate but the current context is above your MaterialApp
in the widget tree.
If you want to use a GlobalKey<NavigatorState>
, you must set it to MaterialApp
like in the example project.
I am using the package with FlowLinks. All working well as expected but once the app opens the path and redirect is not working.
I have a list of events in an event page and event detail page.
My set up is to open the event detail page. But it's only opening the app and not redirecting to the event detail page.
Please help.
This is the link set up on FlowLinks : https://mydomain.com/client-home-page-content-page/events/1f81c20ebbb2429f8f7500b1af84729f
This the AppLink code below :