KeyEventResult enum Null safety
An enum that describes how to handle a key event handled by a FocusOnKeyCallback or FocusOnKeyEventCallback.
Constructors
- KeyEventResult()
-
const
Values
- handled → const KeyEventResult
-
The key event has been handled, and the event should not be propagated to other key event handlers.
KeyEventResult()
- ignored → const KeyEventResult
-
The key event has not been handled, and the event should continue to be propagated to other key event handlers, even non-Flutter ones.
KeyEventResult()
- skipRemainingHandlers → const KeyEventResult
-
The key event has not been handled, but the key event should not be propagated to other key event handlers.
It will be returned to the platform embedding to be propagated to text fields and non-Flutter key event handlers on the platform.
KeyEventResult()
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
KeyEventResult> -
A constant List of the values in this enum, in order of their declaration.
[handled, ignored, skipRemainingHandlers]