KappaTextField constructor

const KappaTextField({
  1. Key? key,
  2. TextEditingController? controller,
  3. String? placeholder,
  4. String? label,
  5. bool obscureText = false,
  6. TextInputType? keyboardType,
  7. ValueChanged<String>? onChanged,
  8. String? errorText,
})

Implementation

const KappaTextField({
  super.key,
  this.controller,
  this.placeholder,
  this.label,
  this.obscureText = false,
  this.keyboardType,
  this.onChanged,
  this.errorText,
});