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
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'upstream/master' into fix-url_launcher
  • Loading branch information
nohli committed Feb 4, 2021
commit a8239c57776c651fba92c0e00d94d15a15b73427
6 changes: 5 additions & 1 deletion packages/url_launcher/url_launcher/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
## 6.0.0-nullsafety.6

* Correct statement in description about which platforms url_launcher supports.

## 6.0.0-nullsafety.5

* Fix PlatformException when not specifying `forceSafariVC` for non-web URLs
* Document that the web plugin is not endorsed in the `nullsafety` prerelease for now.

## 6.0.0-nullsafety.4

Expand Down
2 changes: 1 addition & 1 deletion packages/url_launcher/url_launcher/lib/url_launcher.dart
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ import 'package:url_launcher_platform_interface/url_launcher_platform_interface.
/// is set to true and the universal link failed to launch.
Future<bool> launch(
String urlString, {
bool forceSafariVC = false,
bool? forceSafariVC,
bool forceWebView = false,
bool enableJavaScript = false,
bool enableDomStorage = false,
Expand Down
2 changes: 1 addition & 1 deletion packages/url_launcher/url_launcher/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: url_launcher
description: Flutter plugin for launching a URL. Supports
web, phone, SMS, and email schemes.
homepage: https://github.com/flutter/plugins/tree/master/packages/url_launcher/url_launcher
version: 6.0.0-nullsafety.5
version: 6.0.0-nullsafety.6

flutter:
plugin:
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.