inspector_get_children_details_subtree
Retrieve detailed subtree information for a widget's children in a Flutter app, aiding in debugging widget trees, layout, and navigation analysis. Requires widget ID and port number.
Instructions
RPC: Get the children details subtree for a widget (ext.flutter.inspector.getChildrenDetailsSubtree)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
objectId | Yes | ID of the widget to get children details subtree for | |
port | No | Port number where the Flutter app is running (defaults to 8181) |
Input Schema (JSON Schema)
{
"properties": {
"objectId": {
"description": "ID of the widget to get children details subtree for",
"type": "string"
},
"port": {
"description": "Port number where the Flutter app is running (defaults to 8181)",
"type": "number"
}
},
"required": [
"objectId"
],
"type": "object"
}