Get Flutter Widget Tree [Pro]
flutter_get_widget_treeRetrieve the widget tree from a connected Flutter app. Returns the summary tree (user-created widgets) with type, properties, source location, and children. Requires prior call to flutter_connect. Use summary_only parameter to control output detail.
Instructions
[Pro] Get the widget tree from the connected Flutter app. By default returns the summary tree (user-created widgets only), which maps directly to your source code. Each widget includes its type, properties, source code location (file:line), and children. Call flutter_connect first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| summary_only | No | Only return user-created widgets (true) or full framework tree (false) |