ColabSearchTextField constructor

ColabSearchTextField({
  1. Key? key,
  2. GestureTapCallback? onTap,
  3. ValueChanged<String>? onChanged,
  4. TextEditingController? controller,
  5. bool readOnly = false,
  6. TextInputType? keyboardType,
  7. TextInputAction? textInputAction,
  8. required String hintText,
})

Implementation

ColabSearchTextField({
  super.key,
  super.onTap,
  super.onChanged,
  super.controller,
  super.readOnly,
  super.keyboardType,
  super.textInputAction,
  required String hintText,
}) : super(decoration: _inputDecoration(hintText));