onIncrease property
The handler for SemanticsAction.increase.
This is a request to increase the value represented by the widget. For example, this action might be recognized by a slider control.
VoiceOver users on iOS can trigger this action by swiping up with one finger. TalkBack users on Android can trigger this action by pressing the volume up button.
Implementation
VoidCallback get onIncrease => _onIncrease;
Implementation
set onIncrease(VoidCallback handler) {
if (_onIncrease == handler)
return;
final bool hadValue = _onIncrease != null;
_onIncrease = handler;
if ((handler != null) != hadValue)
markNeedsSemanticsUpdate();
}