JustTextField constructor
JustTextField({
- Key? key,
- TextEditingController? controller,
- String? labelText,
- String? hintText,
- String? prefixText,
- String? suffixText,
- int? minLines,
- int? maxLines,
- int? maxLength,
- TextAlign textAlign = TextAlign.start,
- TextInputType? inputType,
- List<
TextInputFormatter> ? inputFormatters, - bool readOnly = false,
- bool enabled = true,
- bool border = true,
- dynamic onTap()?,
- dynamic onChanged(
- String value
- bool capitalize = false,
Implementation
JustTextField(
{Key? key,
this.controller,
this.labelText,
this.hintText,
this.prefixText,
this.suffixText,
this.minLines,
this.maxLines,
this.maxLength,
this.textAlign = TextAlign.start,
this.inputType,
this.inputFormatters,
this.readOnly = false,
this.enabled = true,
this.border = true,
this.onTap,
this.onChanged,
this.capitalize = false})
: super(key: key);