HMSelect constructor
const
HMSelect({
- bool disabled = false,
- required dynamic value,
- HMRadius? radius,
- Widget? selectIcon,
- bool isModalView = true,
- required List selectList,
- TextStyle? selectedValueTextStyle,
- HMSelectSize? size,
- TextStyle? selectItemStyle,
- required Widget selectionPageTitle,
- Color? selectIconColor,
- Color? selectedBgColor,
- BoxDecoration? selectPanelDecoration,
- bool? selectIconAtLeft,
- required void onChanged(
- dynamic value
- Key? key,
Implementation
const HMSelect({
this.disabled = false,
this.hidden = false,
required this.value,
this.radius,
this.selectIcon,
this.isModalView = true,
required this.selectList,
this.selectedValueTextStyle,
this.size,
this.selectItemStyle,
required this.selectionPageTitle,
this.selectIconColor,
this.selectedBgColor,
this.selectPanelDecoration,
this.selectIconAtLeft,
required this.onChanged,
super.key,
});