debug_disable_physical_shape_layers
Disables physical shape layers in Flutter apps for debugging layout and rendering issues. Use this tool to simplify widget tree analysis and resolve UI problems more effectively.
Instructions
RPC: Toggle physical shape layers debugging (ext.flutter.debugDisablePhysicalShapeLayers)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enabled | Yes | Whether to enable or disable physical shape layers | |
port | No | Port number where the Flutter app is running (defaults to 8181) |
Input Schema (JSON Schema)
{
"properties": {
"enabled": {
"description": "Whether to enable or disable physical shape layers",
"type": "boolean"
},
"port": {
"description": "Port number where the Flutter app is running (defaults to 8181)",
"type": "number"
}
},
"required": [
"enabled"
],
"type": "object"
}