cursor property
The cursor to use when the pointer is over the hit test area.
Implementation
@override
MouseCursor get cursor =>
_pointerEvent?.cursor ?? rive.RiveDefaults.mouseCursor;
Implementation
set cursor(MouseCursor value) {
if (_cursor != value) {
_cursor = value;
// A repaint is needed in order to trigger a device update of
// [MouseTracker] so that this new value can be found.
notifyListeners();
}
}