DraftModeUIPage constructor

const DraftModeUIPage({
  1. Key? key,
  2. required Widget body,
  3. String? navigationTitle,
  4. Widget? topLeading,
  5. List<Widget>? topTrailing,
  6. List<Widget>? bottomLeading,
  7. Widget? bottomCenter,
  8. List<Widget>? bottomTrailing,
  9. double? horizontalContainerPadding,
  10. double? verticalContainerPadding,
  11. Color? containerBackgroundColor,
  12. bool transitionBetweenRoutes = true,
})

Implementation

const DraftModeUIPage({
  super.key,
  required this.body,
  this.navigationTitle,
  this.topLeading,
  this.topTrailing,
  this.bottomLeading,
  this.bottomCenter,
  this.bottomTrailing,
  this.horizontalContainerPadding,
  this.verticalContainerPadding,
  this.containerBackgroundColor,
  this.transitionBetweenRoutes = true,
});