How to open flutter application from url?

后端 未结 3 603
粉色の甜心
粉色の甜心 2020-12-15 19:33

For example, i have case in my flutter app when user can recover his password. In that case user will receive link on e-mail, and i want by clicking on that link, my flutter

相关标签:
3条回答
  • 2020-12-15 20:00

    So here, you must use a dynamic link. The best solution is the use of Firebase Dynamic Links .

    One of the advantages of Firebase Dynamic Links: Convert mobile web users to native app users

    With Dynamic Links, you can seamlessly transition users from your mobile website to the equivalent content within your app. And because the links survive the app install process, even new users can pick up where they left off on your mobile site without missing a beat.

    Another solution is to switch to native solutions: Android and iOS.

    0 讨论(0)
  • 2020-12-15 20:04

    You'll want to view this from the perspective of: How do I open my iOS/Android app from a URL, ie. App Deep Linking.

    They each have their own respective implementations:

    • android/app-links
    • apple/allowing_apps_and_websites_to_link_to_your_content

    Or you can go with more comprehensive SDKs that are capable of doing both for you:

    • Firebase Dynamic Links
    • Branch.io Deep Linking
    0 讨论(0)
  • 2020-12-15 20:05

    There is a nice plugin for this,

    https://github.com/avioli/uni_links

    it also has a detailed explanation on how you need to configure iOS and Android for it to work (which is the hardest part imho); another nice source of information is this blog post

    0 讨论(0)
提交回复
热议问题