Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 5f88ef6

Browse files
authored
Enable view focus (#54966)
Enable view focus flutter/flutter#153022 [C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style
1 parent bad568f commit 5f88ef6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/web_ui/lib/src/engine/platform_dispatcher/view_focus_binding.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ final class ViewFocusBinding {
1212
ViewFocusBinding(this._viewManager, this._onViewFocusChange);
1313

1414

15-
/// Wether [FlutterView] focus changes will be reported and performed.
15+
/// Whether [FlutterView] focus changes will be reported and performed.
1616
///
1717
/// DO NOT rely on this bit as it will go away soon. You're warned :)!
1818
@visibleForTesting
19-
static bool isEnabled = false;
19+
static bool isEnabled = true;
2020

2121
final FlutterViewManager _viewManager;
2222
final ui.ViewFocusChangeCallback _onViewFocusChange;

0 commit comments

Comments
 (0)