You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
After someone shares a donation campaign, people will be opening the link. When this link is opened we have to open the detail page of a donation campaign. Which means we navigate to a specific section inside the app.
Describe the solution you'd like
Handle deep links inside the app so that a specific page is opened, for example, the donation detail page.
Describe alternatives you've considered
It seems the firebase_dynamic links have a couple of options for handling the dynamic links:
If the application is terminated, the FirebaseDynamicLinks.getInitialLink method allows you to retrieve the Dynamic Link that opened the application.
Whilst the application is open, or in the background, you may listen to Dynamic Links events using a stream handler. The FirebaseDynamicLinks.onLink getter returns a Stream containing a PendingDynamicLinkData:
Additional context
But it seems we might be able to do the route parsing ourselves and route to a specific page using Navigator 2.0:
Is your feature request related to a problem? Please describe.
After someone shares a donation campaign, people will be opening the link. When this link is opened we have to open the detail page of a donation campaign. Which means we navigate to a specific section inside the app.
Describe the solution you'd like
Handle deep links inside the app so that a specific page is opened, for example, the donation detail page.
Describe alternatives you've considered
It seems the firebase_dynamic links have a couple of options for handling the dynamic links:
Additional context
But it seems we might be able to do the route parsing ourselves and route to a specific page using Navigator 2.0:
The text was updated successfully, but these errors were encountered: