tree: f9eba0446bdb23a96939001cd35c592231ce7989 [path history] [tgz]
  1. example/
  2. ios/
  3. lib/
  4. windows/
  5. .gitignore
  6. .metadata
  7. CHANGELOG.md
  8. LICENSE
  9. pubspec.yaml
  10. README.md
packages/url_launcher/url_launcher_windows/README.md

url_launcher_windows

The Windows implementation of url_launcher.

Backward compatible 1.0.0 version is coming

The plugin has reached a stable API, we guarantee that version 1.0.0 will be backward compatible with 0.0.y+z. If you use url_launcher_windows directly, rather than as an implementation detail of url_launcher, please use url_launcher_windows: '>=0.0.y+x <2.0.0' as your dependency constraint to allow a smoother ecosystem migration. For more details see: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0

Usage

Import the package

This package has been endorsed, meaning that you only need to add url_launcher as a dependency in your pubspec.yaml. It will be automatically included in your app when you depend on package:url_launcher.

This is what the above means to your pubspec.yaml:

...
dependencies:
  ...
  url_launcher: ^5.6.0
  ...

If you wish to use the Windows package only, you can add url_launcher_windows as a dependency:

...
dependencies:
  ...
  url_launcher_windows: ^0.0.1
  ...