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.
Inheritance

Constructors

TooltipTriggerMode()
const

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:

tap → const TooltipTriggerMode

Tooltip will be shown after a single tap.

See also:

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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.