TDMultiPicker constructor
const
TDMultiPicker({
- required String? title,
- required MultiPickerCallback? onConfirm,
- MultiPickerCallback? onCancel,
- required List<
List< data,String> > - required double pickerHeight,
- required int pickerItemCount,
- List<
int> ? initialIndexes, - TextStyle? leftTextStyle,
- TextStyle? rightTextStyle,
- TextStyle? centerTextStyle,
- double? titleHeight,
- double? topPadding,
- double? leftPadding,
- double? rightPadding,
- Color? titleDividerColor,
- Color? backgroundColor,
- double? topRadius,
- EdgeInsets? padding,
- ItemDistanceCalculator? itemDistanceCalculator,
- Widget? customSelectWidget,
- Key? key,
Implementation
const TDMultiPicker(
{required this.title,
required this.onConfirm,
this.onCancel,
required this.data,
required this.pickerHeight,
required this.pickerItemCount,
this.initialIndexes,
this.leftTextStyle,
this.rightTextStyle,
this.centerTextStyle,
this.titleHeight,
this.topPadding,
this.leftPadding,
this.rightPadding,
this.titleDividerColor,
this.backgroundColor,
this.topRadius,
this.padding,
this.itemDistanceCalculator,
this.customSelectWidget,
Key? key})
: super(key: key);