clickable constant

MaterialStateMouseCursor const clickable

A mouse cursor for clickable material widgets, which resolves differently when the widget is disabled.

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

This cursor is the default for many Material widgets.

Implementation

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