UXPFieldText constructor

const UXPFieldText({
  1. Key? key,
  2. required String? value,
  3. required String? placeholder,
  4. required bool readOnly,
  5. Function? onChange,
  6. String? mode,
  7. String? label,
  8. String? description,
  9. bool? required,
  10. Color? borderColor,
  11. double? borderWidth,
})

Implementation

const UXPFieldText(
    {Key? key,
    required this.value,
    required this.placeholder,
    required this.readOnly,
    this.onChange,
    this.mode,
    this.label,
    this.description,
    this.required,
    this.borderColor,
    this.borderWidth})
    : super(key: key);