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(CLShellSizes.gapLg),
- bool collapsed = false,
Implementation
const CLNavList({
super.key,
required this.destinations,
required this.selectedKey,
required this.onSelect,
this.isCompact = false,
this.forceExpandedKey,
this.padding = const EdgeInsets.all(CLShellSizes.gapLg),
this.collapsed = false,
});