textable constant

WidgetStateMouseCursor const textable

A mouse cursor for widgets related to text, which resolves differently when the widget is disabled.

By default this cursor resolves to SystemMouseCursors.text. If the widget is disabled, the cursor resolves to SystemMouseCursors.basic.

This cursor is the default for many widgets.

Implementation

static const WidgetStateMouseCursor textable = _EnabledAndDisabledMouseCursor(
  enabledCursor: SystemMouseCursors.text,
  disabledCursor: SystemMouseCursors.basic,
  name: 'textable',
);