linkActionPickerDelegate property

LinkActionPickerDelegate linkActionPickerDelegate
final

Delegate function responsible for showing menu with link actions on mobile platforms (iOS, Android).

The menu is triggered in editing mode (readOnly is set to false) when the user long-presses a link-styled text segment.

FlutterQuill provides default implementation which can be overridden by this field to customize the user experience.

By default on iOS the menu is displayed with showCupertinoModalPopup which constructs an instance of CupertinoActionSheet. For Android, the menu is displayed with showModalBottomSheet and a list of Material ListTiles.

Implementation

final LinkActionPickerDelegate linkActionPickerDelegate;