debug_paint_baselines_enabled
Enable or disable baseline paint debugging in Flutter apps to visualize widget alignment and layout issues. Connects to the default Flutter debug port (8181) or a custom port.
Instructions
RPC: Toggle baseline paint debugging (ext.flutter.debugPaintBaselinesEnabled). Connects to the default Flutter debug port (8181) unless specified otherwise.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| enabled | Yes | Whether to enable or disable baseline paint debugging | |
| port | No | Optional: Custom port number if not using default Flutter debug port 8181 | 
Input Schema (JSON Schema)
{
  "properties": {
    "enabled": {
      "description": "Whether to enable or disable baseline paint debugging",
      "type": "boolean"
    },
    "port": {
      "description": "Optional: Custom port number if not using default Flutter debug port 8181",
      "type": "number"
    }
  },
  "required": [
    "enabled"
  ],
  "type": "object"
}