inspector_get_selected_widget
Retrieve detailed information about the currently selected widget in a Flutter app. Use this tool to debug and analyze widget trees, layouts, and navigation by connecting to the Flutter debug port (default 8181).
Instructions
RPC: Get information about the currently selected widget in the Flutter app. Connects to the default Flutter debug port (8181) unless specified otherwise.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
port | No | Optional: Custom port number if not using default Flutter debug port 8181 |
Input Schema (JSON Schema)
{
"properties": {
"port": {
"description": "Optional: Custom port number if not using default Flutter debug port 8181",
"type": "number"
}
},
"required": [],
"type": "object"
}