inspector_get_details_subtree
Retrieve detailed information about a widget and its descendants in a Flutter app by specifying the widget ID. Useful for debugging widget trees and layouts. Connects to the default Flutter debug port unless a custom port is provided.
Instructions
RPC: Get the details subtree for a widget. This provides detailed information about the widget and its descendants. Connects to the default Flutter debug port (8181) unless specified otherwise.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
objectId | Yes | ID of the widget to get details for | |
port | No | Optional: Custom port number if not using default Flutter debug port 8181 |
Input Schema (JSON Schema)
{
"properties": {
"objectId": {
"description": "ID of the widget to get details for",
"type": "string"
},
"port": {
"description": "Optional: Custom port number if not using default Flutter debug port 8181",
"type": "number"
}
},
"required": [
"objectId"
],
"type": "object"
}