NormalAppTextFormField constructor

const NormalAppTextFormField({
  1. Key? key,
  2. bool obscureText = false,
  3. TextEditingController? controller,
  4. String? hint,
  5. String? label,
  6. TextInputType? keyboardType,
  7. double? fontsize,
  8. FormFieldValidator<String>? validator,
  9. Function? onSaved,
  10. Color? color,
  11. Color? bordercolor,
})

Implementation

const NormalAppTextFormField({
  super.key,
  this.obscureText = false,
  this.controller,
  this.hint,
  this.label,
  this.keyboardType,
  this.fontsize,
  this.validator,
  this.onSaved,
  this.color,
  this.bordercolor,
});