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