NavigationHubLayout.bottomNav constructor

NavigationHubLayout.bottomNav({
  1. double? elevation,
  2. BottomNavigationBarType? type,
  3. Color? fixedColor,
  4. Color? backgroundColor,
  5. double? iconSize = 24.0,
  6. Color? selectedItemColor,
  7. Color? unselectedItemColor,
  8. IconThemeData? selectedIconTheme,
  9. IconThemeData? unselectedIconTheme,
  10. double? selectedFontSize = 14.0,
  11. double? unselectedFontSize = 12.0,
  12. TextStyle? selectedLabelStyle,
  13. TextStyle? unselectedLabelStyle,
  14. bool? showSelectedLabels,
  15. bool? showUnselectedLabels,
  16. MouseCursor? mouseCursor,
  17. bool? enableFeedback,
  18. bool? landscapeLayout,
  19. bool? useLegacyColorScheme = true,
})

Create a bottom navigation layout

Implementation

NavigationHubLayout.bottomNav({
  this.elevation,
  this.type,
  Color? fixedColor,
  this.backgroundColor,
  this.iconSize = 24.0,
  this.selectedItemColor,
  this.unselectedItemColor,
  this.selectedIconTheme,
  this.unselectedIconTheme,
  this.selectedFontSize = 14.0,
  this.unselectedFontSize = 12.0,
  this.selectedLabelStyle,
  this.unselectedLabelStyle,
  this.showSelectedLabels,
  this.showUnselectedLabels,
  this.mouseCursor,
  this.enableFeedback,
  this.landscapeLayout,
  this.useLegacyColorScheme = true,
}) : hideAppBarTitle = true {
  kind = "bottomNav";
}