Fix _launchUrl

pull/13/head
singerdmx 4 years ago
parent da4f8e2494
commit d21b8565db
  1. 3
      lib/widgets/editor.dart

@ -363,6 +363,9 @@ class _QuillEditorSelectionGestureDetectorBuilder
}
void _launchUrl(String url) async {
if (!url.startsWith('http')) {
url = 'http://$url';
}
await launch(url, forceWebView: true);
}

Loading…
Cancel
Save