Skip to content

Commit 38463f0

Browse files
committed
fix ext.kotlin_version
and upgrade packages
1 parent a094a6c commit 38463f0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+592
-469
lines changed

example/lib/screens/setting_screen.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ class _SettingScreenState extends State<SettingScreen> {
101101
title: S.of(context).ourFullDocumentation,
102102
icon: Icons.document_scanner_outlined,
103103
onTap: () async {
104-
if (!await launch(
105-
"https://hatemragab.github.io/VChatSdk-Documentation")) {
104+
if (!await launchUrl(
105+
Uri.parse("https://hatemragab.github.io/VChatSdk-Documentation"))) {
106106
throw 'Could not launch ';
107107
}
108108
},
@@ -111,8 +111,8 @@ class _SettingScreenState extends State<SettingScreen> {
111111
title: S.of(context).buyTheBackendCode,
112112
icon: Icons.document_scanner_outlined,
113113
onTap: () async {
114-
if (!await launch(
115-
"https://codecanyon.net/item/flutter-chat-app-with-node-js-and-socket-io-mongo-db/26142700")) {
114+
if (!await launchUrl(
115+
Uri.parse("https://codecanyon.net/item/flutter-chat-app-with-node-js-and-socket-io-mongo-db/26142700"))) {
116116
throw 'Could not launch ';
117117
}
118118
},
@@ -121,7 +121,7 @@ class _SettingScreenState extends State<SettingScreen> {
121121
title: S.of(context).iosTestflightAndPublicFlutterUi,
122122
icon: Icons.document_scanner_outlined,
123123
onTap: () async {
124-
if (!await launch("https://github.com/hatemragab/v_chat_sdk")) {
124+
if (!await launchUrl(Uri.parse("https://github.com/hatemragab/v_chat_sdk"))) {
125125
throw 'Could not launch ';
126126
}
127127
},

0 commit comments

Comments
 (0)