OptionColumnPanelWidget constructor
const
OptionColumnPanelWidget({
- Key? key,
- required List<
ItemOption> items, - required double itemWidth,
- required double itemHeight,
- Color? backgroundColor,
- Color itemDisableColor = Colors.black12,
- double dividerHeight = 0,
- Color dividerColor = Colors.white,
- TextStyle textStyle = const TextStyle(color: Colors.white, fontSize: 12),
- EdgeInsetsGeometry padding = EdgeInsets.zero,
- OnItemOptionClickCall? optionClickCall,
- OptionColumnPanelBuildCall? buildCall,
Implementation
const OptionColumnPanelWidget(
{Key? key,
required this.items,
required this.itemWidth,
required this.itemHeight,
this.backgroundColor,
this.itemDisableColor = Colors.black12,
this.dividerHeight = 0,
this.dividerColor = Colors.white,
this.textStyle = const TextStyle(color: Colors.white, fontSize: 12),
this.padding = EdgeInsets.zero,
this.optionClickCall,
this.buildCall})
: super(key: key);