debugShowMaterialGrid property
bool?
get
debugShowMaterialGrid
If true, it paints a grid overlay on Material apps.
Implementation
static bool? get debugShowMaterialGrid => _appState?.debugShowMaterialGrid;
set
debugShowMaterialGrid
(bool? v)
Implementation
static set debugShowMaterialGrid(bool? v) {
if (v != null) {
_appState?.debugShowMaterialGrid = v;
}
}