flutter_focus_debugger 0.1.2
flutter_focus_debugger: ^0.1.2 copied to clipboard
Tools for inspecting and debugging focus behavior in Flutter apps.
Flutter Focus Debugger #
Tools for tracing and debugging focus changes in Flutter.
https://github.com/user-attachments/assets/d671b1ff-7596-4186-b1b7-1e478b47ce36
Focus Bounds: See the global bounds of the currently focused widget.
Focus History: See a list of all focus changes since the start of the app.
Getting Started #
Wrap your widget tree with a FocusDebugger
:
FocusDebugger(
child: MaterialApp(),
);