flutter_linkify
flutter_linkify copied to clipboard
Clicking on a link calls both onTap and onOpen
The docs suggest that onTap is only called when clicking on selectable text and not links:
/// Called when the user taps on this selectable text (not link)
final GestureTapCallback? onTap;
However, clicking a link calls both onOpen and onTap usually in that order.