debug_disable_opacity_layers
Disable opacity layers in Flutter apps via a debugging RPC to simplify widget tree analysis and layout issue identification. Connects to the default debug port or a custom port if specified.
Instructions
RPC: Toggle opacity layers debugging (ext.flutter.debugDisableOpacityLayers). Connects to the default Flutter debug port (8181) unless specified otherwise.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enabled | Yes | Whether to enable or disable opacity layers | |
port | No | Optional: Custom port number if not using default Flutter debug port 8181 |
Input Schema (JSON Schema)
{
"properties": {
"enabled": {
"default": false,
"description": "Whether to enable or disable opacity layers",
"type": "boolean"
},
"port": {
"description": "Optional: Custom port number if not using default Flutter debug port 8181",
"type": "number"
}
},
"required": [
"enabled"
],
"type": "object"
}