NeoInputField constructor

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

Implementation

const NeoInputField({
  super.key,
  required this.label,
  required this.hint,
  required this.icon,
  this.controller,
  this.obscureText = false,
  this.keyboardType,
  this.onChanged,
});