onDidGainAccessibilityFocus property
final
The handler for SemanticsAction.didGainAccessibilityFocus.
This handler is invoked when the node annotated with this handler gains 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:
- onDidLoseAccessibilityFocus, which is invoked when the accessibility focus is removed from the node.
- onFocus, which is invoked when the assistive technology requests that the input focus is gained by a widget.
- FocusNode, FocusScope, FocusManager, which manage the input focus.
Implementation
final VoidCallback? onDidGainAccessibilityFocus;