mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
5 lines
156 B
Dart
5 lines
156 B
Dart
|
import 'package:url_launcher/url_launcher_string.dart';
|
||
|
|
||
|
Future<bool> launch(String url) =>
|
||
|
launchUrlString(url, mode: LaunchMode.externalApplication);
|