ArcaneAuthLayout constructor

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

Implementation

const ArcaneAuthLayout({
  super.key,
  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)',
});