AtomicAuthTemplate constructor

const AtomicAuthTemplate({
  1. Key? key,
  2. required Widget child,
  3. String? title,
  4. String? subtitle,
  5. Widget? headerWidget,
  6. Widget? footerWidget,
  7. Gradient? backgroundGradient,
  8. Widget? logoWidget,
  9. double maxWidth = 400,
  10. EdgeInsetsGeometry? padding,
  11. double cardElevation = 0,
  12. Color? cardColor,
  13. bool scrollable = true,
})

Implementation

const AtomicAuthTemplate({
  super.key,
  required this.child,
  this.title,
  this.subtitle,
  this.headerWidget,
  this.footerWidget,
  this.backgroundGradient,
  this.showLogo = true,
  this.logoWidget,
  this.maxWidth = 400,
  this.padding,
  this.cardElevation = 0,
  this.cardColor,
  this.scrollable = true,
});