AtomInput constructor

const AtomInput({
  1. Key? key,
  2. required TextEditingController controller,
  3. String? hintText,
  4. TextStyle? style,
  5. InputBorder? border,
  6. bool enabled = true,
  7. Widget? suffixIcon,
  8. TextInputType? keyboardType,
  9. ValueChanged<String>? onChanged,
  10. TextAlignVertical? textAlignVertical,
})

Implementation

const AtomInput({
  super.key,
  required this.controller,
  this.hintText,
  this.style,
  this.border,
  this.enabled = true,
  this.suffixIcon,
  this.keyboardType,
  this.onChanged,
  this.textAlignVertical,
});