CommonTextField constructor
const
CommonTextField({
- Key? key,
- required String hintText,
- TextEditingController? controller,
- TextInputType keyboardType = TextInputType.text,
- bool obscureText = false,
Implementation
const CommonTextField({
super.key,
required this.hintText,
this.controller,
this.keyboardType = TextInputType.text,
this.obscureText = false,
});