CyberLookup constructor

const CyberLookup({
  1. Key? key,
  2. dynamic text,
  3. dynamic display,
  4. dynamic tbName,
  5. dynamic strFilter,
  6. dynamic displayField,
  7. dynamic displayValue,
  8. String? label,
  9. String? hint,
  10. TextStyle? labelStyle,
  11. TextStyle? textStyle,
  12. IconData? icon,
  13. bool enabled = true,
  14. bool readOnly = false,
  15. bool allowClear = true,
  16. dynamic onLeaver(
    1. dynamic
    )?,
  17. ValueChanged? onChanged,
  18. Color? backgroundColor,
  19. Color? borderColor,
  20. bool isShowLabel = true,
  21. dynamic isVisible = true,
  22. dynamic isCheckEmpty = false,
  23. int lookupPageSize = 50,
})

Implementation

const CyberLookup({
  super.key,
  this.text,
  this.display,
  this.tbName,
  this.strFilter,
  this.displayField,
  this.displayValue,
  this.label,
  this.hint,
  this.labelStyle,
  this.textStyle,
  this.icon,
  this.enabled = true,
  this.readOnly = false,
  this.allowClear = true,
  this.onLeaver,
  this.onChanged,
  this.backgroundColor,
  this.borderColor,
  this.isShowLabel = true,
  this.isVisible = true,
  this.isCheckEmpty = false,
  this.lookupPageSize = 50,
});