FastReadOnlyTextField constructor
FastReadOnlyTextField({
- Key? key,
- required String labelText,
- String placeholderText = kFastEmptyString,
- bool enableInteractiveSelection = true,
- bool showHelperBoundaries = true,
- TextAlign textAlign = TextAlign.left,
- Color? helperTextColor,
- Color? valueTextColor,
- String? captionText,
- Widget? suffixIcon,
- String? helperText,
- String? valueText,
- 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);