diff --git a/packages/url-launcher/CHANGELOG.md b/packages/url-launcher/CHANGELOG.md index 2055076850aa..ecae94bf381a 100644 --- a/packages/url-launcher/CHANGELOG.md +++ b/packages/url-launcher/CHANGELOG.md @@ -1,3 +1,7 @@ +## [0.3.2] - 2017-05-04 + +* Change to README.md + ## [0.3.1] - 2017-05-01 * Change to README.md diff --git a/packages/url-launcher/README.md b/packages/url-launcher/README.md index de0411d1eba0..44b834aa5a63 100644 --- a/packages/url-launcher/README.md +++ b/packages/url-launcher/README.md @@ -41,10 +41,12 @@ URL schemes depend on the underlying platform and installed apps. Common schemes supported by both iOS and Android: -* http: , https: -* mailto: -* tel: -* sms: +| Scheme | Action | Example | +|---|---|---| +| `http:` , `https:` | `http://flutter.io` | Open URL in the default browser | +| `mailto:` | `mailto:smith@example.org` | 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` | 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) diff --git a/packages/url-launcher/pubspec.yaml b/packages/url-launcher/pubspec.yaml index 8b4de8892e78..e936e7a9752a 100644 --- a/packages/url-launcher/pubspec.yaml +++ b/packages/url-launcher/pubspec.yaml @@ -1,6 +1,6 @@ name: url_launcher -version: 0.3.1 +version: 0.3.2 description: A Flutter plugin for launching a URL author: Flutter Team homepage: https://github.com/flutter/plugins