NeoInputField constructor
const
NeoInputField({
- Key? key,
- required String label,
- required String hint,
- required IconData icon,
- TextEditingController? controller,
- bool obscureText = false,
- TextInputType? keyboardType,
- 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,
});