UiInput constructor

const UiInput({
  1. Key? key,
  2. required TextEditingController controller,
  3. bool isPassword = false,
  4. Widget? prefix,
  5. Widget? suffix,
  6. String? hint,
  7. IconData? prefixIcon,
  8. IconData? suffixIcon,
  9. List<TextInputFormatter>? inputFormatters,
  10. InputSize? size,
})

Implementation

const UiInput({super.key, required this.controller,
this.isPassword=false,
this.prefix,
this.suffix,
this.hint,
this.prefixIcon,
 this.suffixIcon,
 this.inputFormatters,
 this.size});