In Android we have https://developer.android.com/reference/android/text/util/Linkify
and https://developer.android.com/reference/android/widget/TextView#attr_android:autoLink
so for example if you SMS someone an address properly formatted with city state it lets you pull up google maps when you tap on it.
How do you achieve this in flutter? The packages I find either support only url, or emamil or phone number maybe but not address.
2
Answers
Assume you have an address:
You build a Google Map URL to launch:
Build an Inkwell widget for user:
The launchUrl function is from the url_launcher package: https://pub.dev/packages/url_launcher
Hope this help.
You can use RichText for Linkredirects
for like Terms&condition etc.