mirror of
https://github.com/h7x4/Jisho-Study-Tool.git
synced 2024-12-21 21:47:29 +01:00
h7x4
76f8cc6c86
* Add info sections to application * Update README * Make screenshots bigger * A little less big * Fix heading sizes
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');
|
|
}
|
|
}
|