FastPendingReadOnlyTextField constructor

const FastPendingReadOnlyTextField({
  1. Key? key,
  2. required String labelText,
  3. String placeholderText = kFastEmptyString,
  4. bool enableInteractiveSelection = true,
  5. FontWeight fontWeight = kFastFontWeightBold,
  6. bool showHelperBoundaries = true,
  7. bool showBorder = false,
  8. TextAlign textAlign = TextAlign.left,
  9. bool isPending = false,
  10. Color? helperTextColor,
  11. Color? highlightColor,
  12. Color? valueTextColor,
  13. String? pendingText,
  14. String? captionText,
  15. Widget? suffixIcon,
  16. String? helperText,
  17. String? valueText,
  18. double? fontSize,
})

Implementation

const FastPendingReadOnlyTextField({
  Key? key,
  required this.labelText,
  this.placeholderText = kFastEmptyString,
  this.enableInteractiveSelection = true,
  this.fontWeight = kFastFontWeightBold,
  this.showHelperBoundaries = true,
  this.showBorder = false,
  this.textAlign = TextAlign.left,
  this.isPending = false,
  this.helperTextColor,
  this.highlightColor,
  this.valueTextColor,
  this.pendingText,
  this.captionText,
  this.suffixIcon,
  this.helperText,
  this.valueText,
  this.fontSize,
}) : super(key: key);