We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8644ec commit d55aa45Copy full SHA for d55aa45
lib/rich_text_parser.dart
@@ -47,7 +47,7 @@ class LinkTextSpan extends TextSpan {
47
children: children ?? <TextSpan>[],
48
recognizer: TapGestureRecognizer()
49
..onTap = () {
50
- onLinkTap(url);
+ onLinkTap?.call(url);
51
},
52
);
53
}
0 commit comments