diff --git a/lib/widgets/editor.dart b/lib/widgets/editor.dart index 83015607..94445b10 100644 --- a/lib/widgets/editor.dart +++ b/lib/widgets/editor.dart @@ -363,7 +363,8 @@ class _QuillEditorSelectionGestureDetectorBuilder } void _launchUrl(String url) async { - if (await canLaunch(url)) { + bool ok = await canLaunch(url); + if (ok) { await launch(url); } }