Upgrade url_launcher

pull/783/head
X Code 3 years ago
parent c0c6b8607d
commit 47a8748d0d
  1. 2
      lib/src/widgets/embeds/video_app.dart
  2. 2
      lib/src/widgets/embeds/youtube_video_app.dart
  3. 2
      lib/src/widgets/text_line.dart
  4. 2
      pubspec.yaml

@ -50,7 +50,7 @@ class _VideoAppState extends State<VideoApp> {
text: widget.videoUrl,
style: defaultStyles.link,
recognizer: TapGestureRecognizer()
..onTap = () => launch(widget.videoUrl)),
..onTap = () => launchUrl(Uri.parse(widget.videoUrl))),
);
}

@ -44,7 +44,7 @@ class _YoutubeVideoAppState extends State<YoutubeVideoApp> {
text: widget.videoUrl,
style: defaultStyles.link,
recognizer: TapGestureRecognizer()
..onTap = () => launch(widget.videoUrl)),
..onTap = () => launchUrl(Uri.parse(widget.videoUrl))),
);
}

@ -394,7 +394,7 @@ class _TextLineState extends State<TextLine> {
}
Future<void> _launchUrl(String url) async {
await launch(url);
await launchUrl(Uri.parse(url));
}
void _tapNodeLink(Node node) {

@ -20,7 +20,7 @@ dependencies:
quiver: ^3.0.0
string_validator: ^0.3.0
tuple: ^2.0.0
url_launcher: ^6.0.2
url_launcher: ^6.1.0
pedantic: ^1.11.0
video_player: ^2.1.10
characters: ^1.1.0

Loading…
Cancel
Save