FlutterFeatureTextField constructor

const FlutterFeatureTextField({
  1. Key? key,
  2. TextEditingController? controller,
  3. Widget? suffixIcon,
  4. String? hint,
  5. int? minLines,
  6. Color? borderColor,
  7. Widget? prefixIcon,
  8. Color? textColor,
  9. Color? hintColor,
  10. TextStyle? hintStyle,
  11. TextStyle? textStyle,
  12. bool obscureText = false,
  13. bool isDense = true,
  14. int? maxLines = 1,
  15. TextInputAction? inputAction,
  16. TextInputType? inputType,
  17. bool isEnabled = true,
  18. bool readOnly = false,
  19. BorderRadius? borderRadius,
  20. dynamic onChanged(
    1. String
    )?,
  21. String? validator(
    1. String?
    )?,
})

Implementation

const FlutterFeatureTextField(
    {super.key,
    this.controller,
    this.suffixIcon,
    this.hint,
    this.minLines,
    this.borderColor,
    this.prefixIcon,
    this.textColor,
    this.hintColor,
    this.hintStyle,
    this.textStyle,
    this.obscureText = false,
    this.isDense = true,
    this.maxLines = 1,
    this.inputAction,
    this.inputType,
    this.isEnabled = true,
    this.readOnly = false,
    this.borderRadius,
    this.onChanged,
    this.validator});