1
0
mirror of https://github.com/h7x4/Jisho-Study-Tool.git synced 2024-12-22 05:57:28 +01:00
Jisho-Study-Tool/lib/services/open_webpage.dart

11 lines
244 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import 'package:url_launcher/url_launcher.dart';
Future<void> open_webpage(String url) async {
if (await canLaunch(url)) {
launch(url);
} else {
debugPrint('Could not open url: $url');
}
}