CLBottomBar constructor
const
CLBottomBar({
- Key? key,
- required List<
CLDestination> destinations, - required String? selectedKey,
- required ValueChanged<
CLDestination> onSelect, - required ValueChanged<
CLDestination> onOpenGroup, - required VoidCallback onOverflow,
- required int maxItems,
- List<
CLBottomBarItem> ? items, - String overflowLabel = 'Altro',
- bool topBorder = true,
- bool floating = false,
Implementation
const CLBottomBar({
super.key,
required this.destinations,
required this.selectedKey,
required this.onSelect,
required this.onOpenGroup,
required this.onOverflow,
required this.maxItems,
this.items,
this.overflowLabel = 'Altro',
this.topBorder = true,
this.floating = false,
});