dewango / BottomNavigationBarXF

Bottom Navigation Bar for Xamarin Forms
MIT License
187 stars 97 forks source link

Error when popping page with keyboard open #44

Open Sme90 opened 7 years ago

Sme90 commented 7 years ago

When in the tabbed page, if you push a new navigation page, open up the keyboard (by focusing a text box), and then click the back arrow in the navigation bar, the tabs will appear as if the keyboard is still up (meaning there is a big empty space below the tabs, which is the height of the keyboard, although no keyboard is actually present). Clicking another tab fixes the issue.

I almost was able to create a hacky-fix for it, by listening to the navigation page's Popped event, and then manually hiding the keyboard, but sometimes the page pops too fast, before the keyboard actually disappears, and the issue still remains.

Ironthighs commented 7 years ago

@Sme90 I'm not sure if it fixed your issue, but my PR was just merged with the project that affected the content frame's size. Among other things, I was having weird issues with rotations with a similar symptom to what you're having and now my rotations get updated properly. Try your test case with the new source, maybe it will work.