CLNavList constructor
const
CLNavList({
- Key? key,
- required List<
CLDestination> destinations, - required String? selectedKey,
- required ValueChanged<
CLDestination> onSelect, - bool isCompact = false,
- String? forceExpandedKey,
- EdgeInsets padding = const EdgeInsets.all(Sizes.gapLg),
Implementation
const CLNavList({
super.key,
required this.destinations,
required this.selectedKey,
required this.onSelect,
this.isCompact = false,
this.forceExpandedKey,
this.padding = const EdgeInsets.all(Sizes.gapLg),
});