onDidLoseAccessibilityFocus property
final
The handler for SemanticsAction.didLoseAccessibilityFocus.
This handler is invoked when the node annotated with this handler loses the accessibility focus. The accessibility focus is the green (on Android with TalkBack) or black (on iOS with VoiceOver) rectangle shown on screen to indicate what element an accessibility user is currently interacting with.
The accessibility focus is different from the input focus. The input focus is usually held by the element that currently responds to keyboard inputs. Accessibility focus and input focus can be held by two different nodes!
See also:
- onDidGainAccessibilityFocus, which is invoked when the node gains accessibility focus.
- FocusNode, FocusScope, FocusManager, which manage the input focus.
Implementation
final VoidCallback? onDidLoseAccessibilityFocus;