PixelPerfectGridOverlay constructor

const PixelPerfectGridOverlay({
  1. Key? key,
  2. required Widget child,
  3. bool visible = false,
  4. int columns = 12,
  5. Color color = Colors.green,
  6. double opacity = 0.2,
  7. bool snapToGrid = false,
})

Implementation

const PixelPerfectGridOverlay({
  super.key,
  required this.child,
  this.visible = false,
  this.columns = 12,
  this.color = Colors.green,
  this.opacity = 0.2,
  this.snapToGrid = false,
});