mirror of
https://github.com/h7x4/Jisho-Study-Tool.git
synced 2024-12-22 05:57:28 +01:00
11 lines
244 B
Dart
11 lines
244 B
Dart
|
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');
|
||
|
}
|
||
|
}
|