PageEntry constructor
PageEntry({ - String? route,
- bool showAllToolbarActions = true,
- required dynamic title,
- dynamic subtitle,
- required IconData icon,
- required List<TabEntry> tabs,
- IconData? activeIcon,
- List<Widget>? toolbarItems,
- String? tooltip,
- String? actionTooltip,
- Color? backgroundColor,
- Widget? floatingActionButton,
- FloatingActionButtonLocation? floatingActionButtonLocation,
- String? actionTitle,
- void action()?,
- IconData? actionIcon,
- bool showAppBar = true,
- void onSearch(
- String value
)?,
})
Implementation
PageEntry({
this.route,
this.showAllToolbarActions = true,
required this.title,
this.subtitle,
required this.icon,
required this.tabs,
this.activeIcon,
this.toolbarItems,
this.tooltip,
this.actionTooltip,
this.backgroundColor,
this.floatingActionButton,
this.floatingActionButtonLocation,
this.actionTitle,
this.action,
this.actionIcon,
this.persistentFooterButtons,
this.showAppBar = true,
this.onSearch,
});