tushar dubey
tushar dubey
> @DominicMaas thanks for the reply. I think the stale status of the lib should be indicated both in the repo and in the pub.dev portal. > > Meanwhile, I've...
Please update the plugin with the following code ` this._focusNodeListener = () { if (_effectiveFocusNode!.hasFocus) { this._suggestionsBox!.open(); } else { if (widget.hideSuggestionsOnKeyboardHide){ this._suggestionsBox!.close(); } } }; ` this solves the...
> Hi @tushardubey121 @AbdulRahmanAlHamali , > > I see above changes have been pushed, thanks for that, however, those don't make any difference when hideSuggestionsOnKeyboardHide is set to true. >...
Just update null check in flutter_datetime_picker.dart from this `child: Material( color: theme.backgroundColor ?? Colors.white , child: _renderPickerView(theme), ) ` To this `child: Material( color: theme.backgroundColor == null ? Colors.white :...