Header constructor

Header({
  1. Key? key,
  2. List<Widget>? actions,
  3. PreferredSizeWidget? bottom,
  4. String title = 'simpliWORKS™',
  5. bool centerTitle = true,
  6. bool showAllApps = false,
  7. bool automaticallyImplyLeading = true,
  8. PopupMenuItemSelected<String>? onSelected,
  9. VoidCallback? onHomeCallback,
  10. Widget? leading,
  11. Widget? headerLogoAsset,
})

Implementation

Header(
    {super.key,
    this.actions,
    this.bottom,
    this.title = 'simpliWORKS™',
    this.centerTitle = true,
    this.showAllApps = false,
    this.automaticallyImplyLeading = true,
    this.onSelected,
    this.onHomeCallback,
    this.leading,
    this.headerLogoAsset});