debugShowMaterialGrid property

bool? debugShowMaterialGrid

If true, it paints a grid overlay on Material apps.

Implementation

static bool? get debugShowMaterialGrid => _appState?.debugShowMaterialGrid;
void debugShowMaterialGrid=(bool? v)

Implementation

static set debugShowMaterialGrid(bool? v) {
  if (v != null) {
    _appState?.debugShowMaterialGrid = v;
  }
}