Skip to content

Commit

Permalink
flutter.io => flutter.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
csells committed Jul 14, 2019
1 parent 8e17ab6 commit 518c8f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/url_launcher/README.md
Expand Up @@ -5,7 +5,7 @@
A Flutter plugin for launching a URL in the mobile platform. Supports iOS and Android.

## Usage
To use this plugin, add `url_launcher` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/).
To use this plugin, add `url_launcher` as a [dependency in your pubspec.yaml file](https://flutter.dev/platform-plugins/).

### Example

Expand All @@ -25,7 +25,7 @@ void main() {
}
_launchURL() async {
const url = 'https://flutter.io';
const url = 'https://flutter.dev';
if (await canLaunch(url)) {
await launch(url);
} else {
Expand All @@ -46,7 +46,7 @@ Common schemes supported by both iOS and Android:

| Scheme | Action |
|---|---|
| `http:<URL>` , `https:<URL>`, e.g. `http://flutter.io` | Open URL in the default browser |
| `http:<URL>` , `https:<URL>`, e.g. `http://flutter.dev` | Open URL in the default browser |
| `mailto:<email address>?subject=<subject>&body=<body>`, e.g. `mailto:smith@example.org?subject=News&body=New%20plugin` | Create email to <email address> in the default email app |
| `tel:<phone number>`, e.g. `tel:+1 555 010 999` | Make a phone call to <phone number> using the default phone app |
| `sms:<phone number>`, e.g. `sms:5550101234` | Send an SMS message to <phone number> using the default messaging app |
Expand Down

0 comments on commit 518c8f0

Please sign in to comment.