AuthLayoutProps constructor
const
AuthLayoutProps({
- required Widget child,
- Widget? header,
- bool showGrid = true,
- bool showGlows = true,
- String primaryGlowColor = 'color-mix(in srgb, var(--accent) 15%, transparent)',
- String secondaryGlowColor = 'color-mix(in srgb, var(--info) 15%, transparent)',
- String gridColor = 'color-mix(in srgb, var(--border) 30%, transparent)',
- String maxWidth = '420px',
- 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)',
});