Home > OS >  What happens when you click on a URL link and the link opens the app instead in flutter?
What happens when you click on a URL link and the link opens the app instead in flutter?

Time:10-16

I have a link to a website but I want when the user clicks on the link, they are taken to the app instead of the browser.

CodePudding user response:

You can achieve this using device_apps Flutter_device_apps (not supported for IOS).

CodePudding user response:

firebase_dynamic_links package can help you in this regards.

With Dynamic Links, your users get the best available experience for the platform they open your link on. If a user opens a Dynamic Link on iOS or Android, they can be taken directly to the linked content in your native app. If a user opens the same Dynamic Link in a desktop browser, they can be taken to the equivalent content on your website.

  • Related