Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open flutter application from url?

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 app will open, and route to specific screen.

like image 833
Vadziec Poplavsky Avatar asked Dec 13 '18 21:12

Vadziec Poplavsky


People also ask

How do I use URL launcher?

Launching a webpage with URL Launcher language, label: 'Open a URL', ), ), Run the code on your device and tap the Open a URL card in our original UI to launch the webpage.


1 Answers

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
like image 170
TWL Avatar answered Oct 06 '22 01:10

TWL