BaseContainerOptions constructor

const BaseContainerOptions({
  1. Color? bottomBarColor = Colors.pink,
  2. Color? color = Colors.pink,
  3. bool showBottomBar = false,
  4. EdgeInsets? padding = EdgeInsets.zero,
  5. bool showTopBar = false,
  6. bool animate = false,
  7. bool allowDebugging = true,
  8. Color? backgroundColor = Colors.white,
})

This dictates how each screen is going to be displayed Controls the minor details like the color, topBar, bottomBar and others

Implementation

const BaseContainerOptions(
    {this.bottomBarColor = Colors.pink,
    this.color = Colors.pink,
    this.showBottomBar = false,
    this.padding = EdgeInsets.zero,
    this.showTopBar = false,
    this.animate = false,
    this.allowDebugging = true,
    this.backgroundColor = Colors.white});