BASFInputField constructor
const
BASFInputField({
- TextEditingController? controller,
- void onChanged()?,
- IconData? prefixIcon,
- String? hintText,
- String? labelText = '',
- String? initialText = '',
- String? validation()?,
- bool? initialValidation = true,
- bool? disabled = false,
- bool? withoutClear = false,
- bool? obscureText = false,
- TextInputType? inputType,
- EdgeInsets? padding,
- Key? key,
Implementation
const BASFInputField({
this.controller,
this.onChanged,
this.prefixIcon,
this.hintText,
this.labelText = '',
this.initialText = '',
this.validation,
this.initialValidation = true,
this.disabled = false,
this.withoutClear = false,
this.obscureText = false,
this.inputType,
this.padding,
Key? key,
}) : super(key: key);