debugShowMaterialGrid property

  1. @Deprecated('Should not be an exposed property')
bool? get debugShowMaterialGrid

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

Implementation

@Deprecated('Should not be an exposed property')
bool? get debugShowMaterialGrid => appState?.debugShowMaterialGrid;
  1. @Deprecated('Should not be a readily available capability')
set debugShowMaterialGrid (bool? v)

Implementation

@Deprecated('Should not be a readily available capability')
set debugShowMaterialGrid(bool? v) {
  if (v != null) {
    appState?.debugShowMaterialGrid = v;
  }
}