diff --git a/packages/url-launcher/README.md b/packages/url-launcher/README.md index de0411d1eba0..c4c20272dd79 100644 --- a/packages/url-launcher/README.md +++ b/packages/url-launcher/README.md @@ -41,10 +41,11 @@ URL schemes depend on the underlying platform and installed apps. Common schemes supported by both iOS and Android: -* http: , https: -* mailto: -* tel: -* sms: - -More details can be found here for [iOS](https://developer.apple.com/library/content/featuredarticles/iPhoneURLScheme_Reference/Introduction/Introduction.html) and [Android](https://developer.android.com/guide/components/intents-common.html) - +| Scheme | Action | Example | +|---|---|---| +| `http:` , `https:` | `http://flutter.io` | Open URL in the default browser | +| `mailto:` | `'mailto:smith@example.org?subject=Help&body=I need help!'` | Open in the default email app | +| `tel:` | `tel:+1 555 010 999` | Make a phone call to using the default phone app | +| `sms:` | `sms:5550101234?body=Call me` | Send an SMS message to using the default messaging app | + +More details can be found here for [iOS](https://developer.apple.com/library/content/featuredarticles/iPhoneURLScheme_Reference/Introduction/Introduction.html) and [Android](https://developer.android.com/guide/components/intents-common.html).