MobileHeaderWidget constructor

const MobileHeaderWidget({
  1. bool isMenuButtonVisible = true,
  2. bool isBackButtonVisible = false,
  3. List<Widget> actions = const [],
  4. String? title,
  5. Widget? leading,
  6. Widget? bottom,
  7. Widget customMenuButton(
    1. bool isSidebarOpen
    )?,
  8. Color? fgColor,
  9. Key? key,
})

Implementation

const MobileHeaderWidget({
  this.isMenuButtonVisible = true,
  this.isBackButtonVisible = false,
  this.actions = const [],
  this.title,
  this.leading,
  this.bottom,
  this.customMenuButton,
  this.fgColor,
  super.key,
});