Skip to content

Commit

Permalink
fix ext.kotlin_version
Browse files Browse the repository at this point in the history
and upgrade packages
  • Loading branch information
hatemragab committed Jun 27, 2022
1 parent a094a6c commit 38463f0
Show file tree
Hide file tree
Showing 52 changed files with 592 additions and 469 deletions.
10 changes: 5 additions & 5 deletions example/lib/screens/setting_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ class _SettingScreenState extends State<SettingScreen> {
title: S.of(context).ourFullDocumentation,
icon: Icons.document_scanner_outlined,
onTap: () async {
if (!await launch(
"https://hatemragab.github.io/VChatSdk-Documentation")) {
if (!await launchUrl(
Uri.parse("https://hatemragab.github.io/VChatSdk-Documentation"))) {
throw 'Could not launch ';
}
},
Expand All @@ -111,8 +111,8 @@ class _SettingScreenState extends State<SettingScreen> {
title: S.of(context).buyTheBackendCode,
icon: Icons.document_scanner_outlined,
onTap: () async {
if (!await launch(
"https://codecanyon.net/item/flutter-chat-app-with-node-js-and-socket-io-mongo-db/26142700")) {
if (!await launchUrl(
Uri.parse("https://codecanyon.net/item/flutter-chat-app-with-node-js-and-socket-io-mongo-db/26142700"))) {
throw 'Could not launch ';
}
},
Expand All @@ -121,7 +121,7 @@ class _SettingScreenState extends State<SettingScreen> {
title: S.of(context).iosTestflightAndPublicFlutterUi,
icon: Icons.document_scanner_outlined,
onTap: () async {
if (!await launch("https://github.com/hatemragab/v_chat_sdk")) {
if (!await launchUrl(Uri.parse("https://github.com/hatemragab/v_chat_sdk"))) {
throw 'Could not launch ';
}
},
Expand Down
Loading

0 comments on commit 38463f0

Please sign in to comment.