clickable constant

WidgetStateMouseCursor const clickable

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

Implementation

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