FullScreenLayout constructor

const FullScreenLayout({
  1. Key? key,
  2. required Widget child,
  3. String? title,
  4. String? subtitle,
  5. Widget? footer,
  6. Widget? header,
  7. Color? backgroundColor,
  8. Gradient? gradient,
})

Implementation

const FullScreenLayout({
  super.key,
  required this.child,
  this.title,
  this.subtitle,
  this.footer,
  this.header,
  this.backgroundColor,
  this.gradient,
});