TooltipTriggerMode enum
The method of interaction that will trigger a tooltip. Used in Tooltip.triggerMode and TooltipThemeData.triggerMode.
On desktop, a tooltip will be shown as soon as a pointer hovers over the widget, regardless of the value of Tooltip.triggerMode.
See also:
- Tooltip.waitDuration, which defines the length of time that a pointer must hover over a tooltip's widget before the tooltip will be shown.
Values
- manual → const TooltipTriggerMode
-
Tooltip will only be shown by calling
ensureTooltipVisible
. - longPress → const TooltipTriggerMode
-
Tooltip will be shown after a long press.
See also:
- GestureDetector.onLongPress, the event that is used for trigger.
- Feedback.forLongPress, the feedback method called when feedback is enabled.
- tap → const TooltipTriggerMode
-
Tooltip will be shown after a single tap.
See also:
- GestureDetector.onTap, the event that is used for trigger.
- Feedback.forTap, the feedback method called when feedback is enabled.
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
TooltipTriggerMode> - A constant List of the values in this enum, in order of their declaration.