CommonTextFieldForBottomSheet constructor

const CommonTextFieldForBottomSheet({
  1. required TextEditingController controller,
  2. required String labelText,
  3. TextInputType inputType = TextInputType.text,
  4. int maxLength = TextField.noMaxLength,
  5. String prefixIcon = "",
  6. String suffixIcon = "",
  7. required void onTap(),
  8. Key? key,
})

Implementation

const CommonTextFieldForBottomSheet({
  required this.controller,
  required this.labelText,
  this.inputType = TextInputType.text,
  this.maxLength = TextField.noMaxLength,
  this.prefixIcon = "",
  this.suffixIcon = "",
  required this.onTap,
  super.key
});