debug_allow_banner
Enable or disable the debug banner in a Flutter app through the Flutter Inspector MCP Server. Toggle visibility to streamline debugging processes for widget trees and layout analysis.
Instructions
RPC: Toggle the debug banner in the Flutter app
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enabled | Yes | Whether to show or hide the debug banner | |
port | No | Port number where the Flutter app is running (defaults to 8181) |
Input Schema (JSON Schema)
{
"properties": {
"enabled": {
"description": "Whether to show or hide the debug banner",
"type": "boolean"
},
"port": {
"description": "Port number where the Flutter app is running (defaults to 8181)",
"type": "number"
}
},
"required": [
"enabled"
],
"type": "object"
}