SubZeroHeaderScaffold constructor

const SubZeroHeaderScaffold({
  1. Key? key,
  2. required Widget header(
    1. bool isScrolled
    ),
  3. required Widget body,
  4. Widget? drawer,
  5. Widget? floatingActionButton,
  6. Widget? bottomNavigationBar,
  7. Color? backgroundColor,
})

Implementation

const SubZeroHeaderScaffold({
  super.key,
  required this.header,
  required this.body,
  this.drawer,
  this.floatingActionButton,
  this.bottomNavigationBar,
  this.backgroundColor,
});