BeautifulTextField constructor

const BeautifulTextField({
  1. Key? key,
  2. required String hintText,
  3. TextEditingController? controller,
  4. IconData? icon,
  5. bool obscureText = false,
})

Implementation

const BeautifulTextField({
  super.key,
  required this.hintText,
  this.controller,
  this.icon,
  this.obscureText = false,
});