AppWebHeader constructor
const
AppWebHeader({
- Key? key,
- required String moduleTitle,
- String moduleSubtitle = 'Dashboard',
- String searchHint = 'Search...',
- Widget? breadcrumb,
- VoidCallback? onHomeCallback,
- VoidCallback? onSearchTap,
- bool showSearch = true,
Implementation
const AppWebHeader({
super.key,
required this.moduleTitle,
this.moduleSubtitle = 'Dashboard',
this.searchHint = 'Search...',
this.breadcrumb,
this.onHomeCallback,
this.onSearchTap,
this.showSearch = true,
});