ScaffoldPage constructor

const ScaffoldPage({
  1. Key? key,
  2. Widget? topBar,
  3. Widget content = const SizedBox.expand(),
  4. Widget? bottomBar,
  5. ScrollController? contentScrollController,
})

Creates a new scaffold page.

Implementation

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