ColabSearchTextField constructor
ColabSearchTextField({
- Key? key,
- GestureTapCallback? onTap,
- ValueChanged<
String> ? onChanged, - TextEditingController? controller,
- bool readOnly = false,
- TextInputType? keyboardType,
- TextInputAction? textInputAction,
- 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));