I have a route called "/song", which takes parameters. And this is how I access within the app:
() => Navigator.pushNamed(context, "/song", arguments: "my_id");
How can I convert URL params to in-app route arguments?
Example:
When I open https://myapp.page.link/song&id=some_id
, it opens /song
route with "some_id"
argument.
NOTE: Data is dynamically loaded on both website and app, therefore it's very impractical to implement deep link for each one of them manually.