FastReadOnlyTextField constructor

FastReadOnlyTextField({
  1. Key? key,
  2. required String labelText,
  3. String placeholderText = kFastEmptyString,
  4. bool enableInteractiveSelection = true,
  5. bool showHelperBoundaries = true,
  6. TextAlign textAlign = TextAlign.left,
  7. Color? helperTextColor,
  8. Color? valueTextColor,
  9. String? captionText,
  10. Widget? suffixIcon,
  11. String? helperText,
  12. String? valueText,
  13. Widget? child,
})

Implementation

FastReadOnlyTextField({
  Key? key,
  required this.labelText,
  this.placeholderText = kFastEmptyString,
  this.enableInteractiveSelection = true,
  this.showHelperBoundaries = true,
  this.textAlign = TextAlign.left,
  this.helperTextColor,
  this.valueTextColor,
  this.captionText,
  this.suffixIcon,
  this.helperText,
  this.valueText,
  this.child,
}) : super(key: key);