AdaptiveTextField constructor
const
AdaptiveTextField({
- Key? key,
- required TextEditingController controller,
- required String label,
- String? hint,
- bool obscure = false,
- TextInputType keyboardType = TextInputType.text,
- Widget? prefixIcon,
- Widget? suffixIcon,
- FormFieldValidator<
String> ? validator,
Implementation
const AdaptiveTextField({
super.key,
required this.controller,
required this.label,
this.hint,
this.obscure = false,
this.keyboardType = TextInputType.text,
this.prefixIcon,
this.suffixIcon,
this.validator,
});