AuthLayoutProps constructor

const AuthLayoutProps({
  1. required Widget child,
  2. Widget? header,
  3. Widget? footer,
  4. bool showGrid = true,
  5. bool showGlows = true,
  6. String primaryGlowColor = 'color-mix(in srgb, var(--accent) 15%, transparent)',
  7. String secondaryGlowColor = 'color-mix(in srgb, var(--info) 15%, transparent)',
  8. String gridColor = 'color-mix(in srgb, var(--border) 30%, transparent)',
  9. String maxWidth = '420px',
  10. String backgroundColor = 'var(--background)',
})

Implementation

const AuthLayoutProps({
  required this.child,
  this.header,
  this.footer,
  this.showGrid = true,
  this.showGlows = true,
  this.primaryGlowColor = 'color-mix(in srgb, var(--accent) 15%, transparent)',
  this.secondaryGlowColor = 'color-mix(in srgb, var(--info) 15%, transparent)',
  this.gridColor = 'color-mix(in srgb, var(--border) 30%, transparent)',
  this.maxWidth = '420px',
  this.backgroundColor = 'var(--background)',
});