CommonTextField constructor

const CommonTextField({
  1. Key? key,
  2. required String hintText,
  3. TextEditingController? controller,
  4. TextInputType keyboardType = TextInputType.text,
  5. bool obscureText = false,
})

Implementation

const CommonTextField({
  super.key,
  required this.hintText,
  this.controller,
  this.keyboardType = TextInputType.text,
  this.obscureText = false,
});