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.

Implementation

static const WidgetStateMouseCursor clickable = WidgetStateMouseCursor.resolveWith(
  _clickable,
  debugDescription: 'WidgetStateMouseCursor(clickable)',
);