JkAppBarLayout constructor

const JkAppBarLayout({
  1. Key? key,
  2. Widget? appBar,
  3. Widget? appBarPinned,
  4. Widget? bottomBar,
  5. Widget? bottomBarPinned,
  6. JkAppBarBackgroundBuilder? appBarBackgroundBuilder,
  7. bool backgroundIncludingAppBarPinned = false,
  8. bool floating = true,
  9. bool snap = true,
  10. Axis scrollDirection = Axis.vertical,
  11. bool applySafeArea = true,
  12. Color? appBarBackgroundColor,
  13. bool appBarDefaultTheme = true,
  14. bool enableInkWell = true,
  15. required Widget child,
})

Implementation

const JkAppBarLayout(
    {super.key,
    this.appBar,
    this.appBarPinned,
    this.bottomBar,
    this.bottomBarPinned,
    this.appBarBackgroundBuilder,
    this.backgroundIncludingAppBarPinned = false,
    this.floating = true,
    this.snap = true,
    this.scrollDirection = Axis.vertical,
    this.applySafeArea = true,
    this.appBarBackgroundColor,
    this.appBarDefaultTheme = true,
    this.enableInkWell = true,
    required this.child});