datetime_picker_formfield icon indicating copy to clipboard operation
datetime_picker_formfield copied to clipboard

datetime picker suddenly showing up after navigator.pop()

Open rizaldyaf opened this issue 5 years ago • 6 comments

hello, you've made an awesome library but I found a bug (maybe). I'm using this package in a simple form widget that contains some TextField and your date time picker widget. after the form widget closed the date time picker suddenly popped up, I also using WillPopScope widget in my form widget, just to ask user if they really want to close the form.

rizaldyaf avatar Feb 20 '20 04:02 rizaldyaf

have the same issue, any resolution for this?

termic avatar Mar 11 '20 06:03 termic

flutter upgrade seems to solve the problem

termic avatar Mar 11 '20 09:03 termic

same here,flutter upgrade not work for me

DouSN avatar Mar 27 '20 03:03 DouSN

@pingxiaodou I updated my flutter to 1.12.13 hotfix-8 seems fix the problem, maybe you should try

rizaldyaf avatar Mar 27 '20 04:03 rizaldyaf

@pingxiaodou I updated my flutter to 1.12.13 hotfix-8 seems fix the problem, maybe you should try

Thanks for your reply,update flutter to 1.12.13 hotfix-8 dosenot work for me,I solved it by call FocusScope.of(context).requestFocus(FocusNode()); before Navigator.pop(context);

DouSN avatar Mar 27 '20 05:03 DouSN

@pingxiaodou FocusScope.of(context).requestFocus(FocusNode()); before Navigator.pop(context); This also works fine! That might be a quick workaround.

termic avatar Apr 02 '20 11:04 termic