onTapUpOutside property

TapRegionCallback? onTapUpOutside
final

Called for each tap up that occurs outside of the TextFieldTapRegion group when the text field is focused.

If this is null, EditableTextTapUpOutsideIntent will be invoked. In the default implementation, this is a no-op. To change this behavior, set a callback here or override EditableTextTapUpOutsideIntent.

The PointerUpEvent passed to the function is the event that caused the notification. It is possible that the event may occur outside of the immediate bounding box defined by the text field, although it will be within the bounding box of a TextFieldTapRegion member.

Implementation

final TapRegionCallback? onTapUpOutside;