flutter / devtools

Performance tools for Flutter
https://flutter.dev/docs/development/tools/devtools/
BSD 3-Clause "New" or "Revised" License
1.58k stars 324 forks source link

Flatten the inspector tree #7887

Closed elliette closed 3 months ago

elliette commented 3 months ago

Currently we indent every child widget in the tree. Because many of the widgets in any given Flutter widget tree have only a single child, this requires the developer to do a lot of horizontal as well as vertical scrolling.

Instead, we will only ident child widgets if there are multiple children per parent, in order to flatten the widget tree.

elliette commented 3 months ago

Fixed by https://github.com/flutter/devtools/pull/7886