• Todd Volkert's avatar
    Fix FocusManager constructor (#75894) · 835c7fab
    Todd Volkert authored
    The FocusManager constructor was registering global event handlers
    on the shared RawKeyboard instance and the global pointer router.
    This posed a few problems: (1) there was no way to unregister these
    handlers, and (2) instantiating a second FocusManager would overwrite
    the existing focus manager's RawKeyboard handler. This was manifesting
    in unexpected ways, such as the fact that constructing a second
    BuildOwner (for a parallel tree, for instance) was obliterating the
    event handler for the main BuildOwner's focus manager, thus messing
    with focus.
    
    This change separates those global event registrations into a
    dedicated method, registerGlobalHandlers(), and overrides dispose()
    to properly unregister those handlers.
    835c7fab
Name
Last commit
Last update
..
src Loading commit data...
analysis_options_user.yaml Loading commit data...
animation.dart Loading commit data...
cupertino.dart Loading commit data...
fix_data.yaml Loading commit data...
foundation.dart Loading commit data...
gestures.dart Loading commit data...
material.dart Loading commit data...
painting.dart Loading commit data...
physics.dart Loading commit data...
rendering.dart Loading commit data...
scheduler.dart Loading commit data...
semantics.dart Loading commit data...
services.dart Loading commit data...
widgets.dart Loading commit data...