ScaffoldPage constructor

const ScaffoldPage({
  1. required Key key,
  2. required ScaffoldPageIcon pageIconBuilder(
    1. BuildContext context
    ),
  3. required Widget builder(
    1. BuildContext context
    ),
  4. VoidCallback? onShowPage,
  5. Future<int>? preparationFuture()?,
  6. Widget builderPreparation(
    1. BuildContext context
    )?,
  7. bool scrollable = true,
})

Implementation

const ScaffoldPage({
  required this.key,
  required this.pageIconBuilder,
  required this.builder,
  this.onShowPage,
  this.preparationFuture,
  this.builderPreparation,
  this.scrollable = true,
});