FScaffold constructor

const FScaffold({
  1. required Widget content,
  2. Widget? header,
  3. Widget? footer,
  4. bool contentPad = true,
  5. FScaffoldStyle? style,
  6. Key? key,
})

Creates a FScaffold.

Implementation

const FScaffold({
  required this.content,
  this.header,
  this.footer,
  this.contentPad = true,
  this.style,
  super.key,
});