debug_disable_clip_layers
Disable clip layers in a Flutter app to identify and address layout issues during debugging. Control the feature via the MCP server for efficient widget tree analysis.
Instructions
RPC: Toggle disabling of clip layers in the Flutter app
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enabled | Yes | Whether to enable or disable clip 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 clip layers",
"type": "boolean"
},
"port": {
"description": "Port number where the Flutter app is running (defaults to 8181)",
"type": "number"
}
},
"required": [
"enabled"
],
"type": "object"
}