Launch Native URL Schemes in Flutter with the url_launcher Plugin

1 · · Nov. 5, 2019, midnight
When developing mobile applications, there’s going to be times when you want to interact with apps outside of your own app. This could be something as simple as opening a web page in Safari, to deep-linking into another application with context. If this is something you’re looking for, we’re able to do exactly that with the url_launcher plugin! This plugin has 100 health rating on pub.dev and is made by the Google flutter.dev team. Creating a new Flutter project As always, we’ll start off by set...