Skip to content

Commit

Permalink
refactor(dynamic_links,example): Update deprecated API for dynamic li…
Browse files Browse the repository at this point in the history
…nks example app. (#8519)
  • Loading branch information
russellwheatley committed Apr 26, 2022
1 parent 461bba5 commit c5d288b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Expand Up @@ -160,7 +160,7 @@ class _MainScreenState extends State<_MainScreen> {
InkWell(
onTap: () async {
if (_linkMessage != null) {
await launch(_linkMessage!);
await launchUrl(Uri.parse(_linkMessage!));
}
},
onLongPress: () {
Expand Down
Expand Up @@ -12,7 +12,7 @@ dependencies:
path: ../
flutter:
sdk: flutter
url_launcher: ^6.0.2
url_launcher: ^6.1.0

dependency_overrides:
firebase_core:
Expand Down
Expand Up @@ -26,7 +26,6 @@ dev_dependencies:
flutter_test:
sdk: flutter
mockito: ^5.0.0
url_launcher: ^6.0.2

flutter:
plugin:
Expand Down

0 comments on commit c5d288b

Please sign in to comment.