apnl.link

apnl.link is Apps Panel's service for handling deep links.

Configuration

You can find the global mobile configuration documentation here : https://gitlab.apnl.tech/ap/docs/-/wikis/APNL-Links#configuration-appsfront

Flutter integration

GoRouter

If you use go_router (which is the current recommended way to handle navigation), GoRouter catches deeplink navigation actions, so you need to declare routes for those.

For instance if you have a /app/item/$id deeplink, you need to have a GoRoute to handle it:

  GoRoute(
    path: '/app/item/:id',