CyberComboBox constructor

const CyberComboBox({
  1. Key? key,
  2. dynamic text,
  3. dynamic displayMember,
  4. dynamic valueMember,
  5. CyberDataTable? dataSource,
  6. String? label,
  7. String? hint,
  8. TextStyle? labelStyle,
  9. TextStyle? textStyle,
  10. IconData? icon,
  11. bool enabled = true,
  12. ValueChanged? onChanged,
  13. dynamic onLeaver(
    1. dynamic
    )?,
  14. Color? iconColor,
  15. Color? backgroundColor,
  16. Color? borderColor,
  17. bool isShowLabel = true,
  18. dynamic isVisible = true,
  19. dynamic isCheckEmpty = false,
})

Implementation

const CyberComboBox({
  super.key,
  this.text,
  this.displayMember,
  this.valueMember,
  this.dataSource,
  this.label,
  this.hint,
  this.labelStyle,
  this.textStyle,
  this.icon,
  this.enabled = true,
  this.onChanged,
  this.onLeaver,
  this.iconColor,
  this.backgroundColor,
  this.borderColor,
  this.isShowLabel = true,
  this.isVisible = true,
  this.isCheckEmpty = false,
});