HMSelect constructor

const HMSelect({
  1. bool disabled = false,
  2. bool hidden = false,
  3. required dynamic value,
  4. HMRadius? radius,
  5. Widget? selectIcon,
  6. bool isModalView = true,
  7. required List selectList,
  8. TextStyle? selectedValueTextStyle,
  9. HMSelectSize? size,
  10. TextStyle? selectItemStyle,
  11. required Widget selectionPageTitle,
  12. Color? selectIconColor,
  13. Color? selectedBgColor,
  14. BoxDecoration? selectPanelDecoration,
  15. bool? selectIconAtLeft,
  16. required void onChanged(
    1. dynamic value
    ),
  17. 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,
});