textable constant

MaterialStateMouseCursor const textable

A mouse cursor for material 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 Material widgets.

Implementation

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