ScaffoldPage constructor

const ScaffoldPage({
  1. Key? key,
  2. Widget? header,
  3. Widget content = const SizedBox.expand(),
  4. Widget? bottomBar,
  5. EdgeInsets? padding,
  6. bool resizeToAvoidBottomInset = true,
})

Creates a new scaffold page.

Implementation

const ScaffoldPage({
  super.key,
  this.header,
  this.content = const SizedBox.expand(),
  this.bottomBar,
  this.padding,
  this.resizeToAvoidBottomInset = true,
});