Add default onLaunchUrl

pull/13/head
singerdmx 4 years ago
parent 4ea9446a03
commit bcd481e617
  1. 7
      app/lib/pages/home_page.dart
  2. 2
      app/pubspec.lock
  3. 1
      app/pubspec.yaml
  4. 18
      lib/widgets/editor.dart
  5. 56
      pubspec.lock
  6. 1
      pubspec.yaml

@ -79,17 +79,10 @@ class _HomePageState extends State<HomePage> {
enableInteractiveSelection: true, enableInteractiveSelection: true,
expands: false, expands: false,
padding: EdgeInsets.zero, padding: EdgeInsets.zero,
onLaunchUrl: _launchUrl,
), ),
), ),
), ),
], ],
); );
} }
void _launchUrl(String url) async {
if (await canLaunch(url)) {
await launch(url);
}
}
} }

@ -190,7 +190,7 @@ packages:
source: hosted source: hosted
version: "1.3.0-nullsafety.3" version: "1.3.0-nullsafety.3"
url_launcher: url_launcher:
dependency: "direct main" dependency: transitive
description: description:
name: url_launcher name: url_launcher
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"

@ -23,7 +23,6 @@ environment:
dependencies: dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
url_launcher: ^5.7.10
# The following adds the Cupertino Icons font to your application. # The following adds the Cupertino Icons font to your application.

@ -15,6 +15,7 @@ import 'package:flutter_quill/models/documents/nodes/line.dart';
import 'package:flutter_quill/models/documents/nodes/node.dart'; import 'package:flutter_quill/models/documents/nodes/node.dart';
import 'package:flutter_quill/widgets/raw_editor.dart'; import 'package:flutter_quill/widgets/raw_editor.dart';
import 'package:flutter_quill/widgets/text_selection.dart'; import 'package:flutter_quill/widgets/text_selection.dart';
import 'package:url_launcher/url_launcher.dart';
import 'box.dart'; import 'box.dart';
import 'controller.dart'; import 'controller.dart';
@ -103,7 +104,7 @@ class QuillEditor extends StatefulWidget {
final TextCapitalization textCapitalization; final TextCapitalization textCapitalization;
final Brightness keyboardAppearance; final Brightness keyboardAppearance;
final ScrollPhysics scrollPhysics; final ScrollPhysics scrollPhysics;
final ValueChanged<String> onLaunchUrl; ValueChanged<String> onLaunchUrl;
final EmbedBuilder embedBuilder; final EmbedBuilder embedBuilder;
QuillEditor( QuillEditor(
@ -316,17 +317,26 @@ class _QuillEditorSelectionGestureDetectorBuilder
return; return;
} }
Leaf segment = segmentResult.node as Leaf; Leaf segment = segmentResult.node as Leaf;
if (segment.style.containsKey(Attribute.link.key) && if (segment.style.containsKey(Attribute.link.key)) {
getEditor().widget.onLaunchUrl != null) { var launchUrl = getEditor().widget.onLaunchUrl;
if (launchUrl == null) {
launchUrl = _launchUrl;
}
String link = segment.style.attributes[Attribute.link.key].value; String link = segment.style.attributes[Attribute.link.key].value;
if (getEditor().widget.readOnly && if (getEditor().widget.readOnly &&
link != null && link != null &&
urlRegExp.firstMatch(link) != null) { urlRegExp.firstMatch(link) != null) {
getEditor().widget.onLaunchUrl(link); launchUrl(link);
} }
} }
} }
void _launchUrl(String url) async {
if (await canLaunch(url)) {
await launch(url);
}
}
@override @override
onSingleTapUp(TapUpDetails details) { onSingleTapUp(TapUpDetails details) {
getEditor().hideToolbar(); getEditor().hideToolbar();

@ -60,6 +60,11 @@ packages:
description: flutter description: flutter
source: sdk source: sdk
version: "0.0.0" version: "0.0.0"
flutter_web_plugins:
dependency: transitive
description: flutter
source: sdk
version: "0.0.0"
matcher: matcher:
dependency: transitive dependency: transitive
description: description:
@ -81,6 +86,13 @@ packages:
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.8.0-nullsafety.1" version: "1.8.0-nullsafety.1"
plugin_platform_interface:
dependency: transitive
description:
name: plugin_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.3"
quill_delta: quill_delta:
dependency: "direct main" dependency: "direct main"
description: description:
@ -163,6 +175,48 @@ packages:
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.3.0-nullsafety.3" version: "1.3.0-nullsafety.3"
url_launcher:
dependency: "direct main"
description:
name: url_launcher
url: "https://pub.dartlang.org"
source: hosted
version: "5.7.10"
url_launcher_linux:
dependency: transitive
description:
name: url_launcher_linux
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.1+4"
url_launcher_macos:
dependency: transitive
description:
name: url_launcher_macos
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.1+9"
url_launcher_platform_interface:
dependency: transitive
description:
name: url_launcher_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.9"
url_launcher_web:
dependency: transitive
description:
name: url_launcher_web
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.5+1"
url_launcher_windows:
dependency: transitive
description:
name: url_launcher_windows
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.1+3"
vector_math: vector_math:
dependency: transitive dependency: transitive
description: description:
@ -172,4 +226,4 @@ packages:
version: "2.1.0-nullsafety.3" version: "2.1.0-nullsafety.3"
sdks: sdks:
dart: ">=2.10.0-110 <2.11.0" dart: ">=2.10.0-110 <2.11.0"
flutter: ">=1.17.0 <2.0.0" flutter: ">=1.22.0 <2.0.0"

@ -16,6 +16,7 @@ dependencies:
quiver_hashcode: ^2.0.0 quiver_hashcode: ^2.0.0
collection: ^1.14.13 collection: ^1.14.13
tuple: ^1.0.3 tuple: ^1.0.3
url_launcher: ^5.7.10
dev_dependencies: dev_dependencies:
flutter_test: flutter_test:

Loading…
Cancel
Save