ScaffoldPage constructor

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

Creates a new scaffold page.

Implementation

const ScaffoldPage({
  Key? key,
  this.header,
  this.content = const SizedBox.expand(),
  this.bottomBar,
  this.padding,
}) : super(key: key);