Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add more details in url_launcher Readme
  • Loading branch information
szakarias committed May 4, 2017
commit a47b50d04cd7e84cc1b1ce5b273ef6c131bf7901
4 changes: 4 additions & 0 deletions packages/url-launcher/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.3.1] - 2017-05-04

* Change to README.md

## [0.3.1] - 2017-05-01

* Change to README.md
Expand Down
10 changes: 6 additions & 4 deletions packages/url-launcher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,12 @@ URL schemes depend on the underlying platform and installed apps.

Common schemes supported by both iOS and Android:

* http:<URL> , https:<URL>
* mailto:<email-address>
* tel:<phone-number>
* sms:<phone-number>
| Scheme | Action | Example |
|---|---|---|
| `http:<URL>` , `https:<URL>` | `http://flutter.io` | Open URL in the default browser |
| `mailto:<email address>` | `'mailto:[email protected]?subject=Help&body=I need help!'` | Open <email address> in the default email app |
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change the mailto one to just 'mailto:[email protected]' until we figure out what is going on with iOS

| `tel:<phone number>` | `tel:+1 555 010 999` | Make a phone call to <phone number> using the default phone app |
| `sms:<phone number>` | `sms:5550101234` | Send an SMS message to <phone number> 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)

2 changes: 1 addition & 1 deletion packages/url-launcher/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
homepage: https://github.com/flutter/plugins
Expand Down