BrnMultiColumnPicker constructor
BrnMultiColumnPicker({
- Key? key,
- required PickerEntity entity,
- double maxHeight = 280.0,
- bool showSelectedCount = false,
- bool isIncludeUnLimit = false,
- BrnOnPickerConfirm? onConfirm,
- BrnOnEntityTap? onEntityTap,
- OnSelectEntityInterceptor? canSelectEntryInterceptor,
- List<
int> ? defaultFocusedIndexes, - PickerTitleConfig pickerTitleConfig = PickerTitleConfig.Default,
- PickerConfig? themeData,
Implementation
BrnMultiColumnPicker(
{Key? key,
required this.entity,
this.maxHeight = 280.0,
this.showSelectedCount = false,
this.isIncludeUnLimit = false,
this.onConfirm,
this.onEntityTap,
this.canSelectEntryInterceptor,
this.defaultFocusedIndexes,
this.pickerTitleConfig = PickerTitleConfig.Default,
this.themeData})
: super(key: key) {
themeData ??= PickerConfig();
themeData =
themeData!.merge(BaseThemeConfig.instance.getConfig().pickerConfig);
}