-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hiding the visibility of bottom bar creates empty space #18
Comments
I have the same issue when I like to show a fragment in my activity without the bottombar. Greetings |
Same issue Here ! Calling BottomBar.Hide(bool) set an empty space at the top, and the actionbar is broken |
Have the same issue here. Any workarounds or fixes? |
Hello friends, i found a little workaround which helps with this issue. I hope it works for you guys. This is doing the hiding magic without the upper gap:
and for showing:
|
Somehow this bug has returned from the undead. |
Looks like Xamarin.Forms 2.5.444934 is the one that has the issue, I rolled back to a previous version and everything is working correctly. |
Hi @pocheshire ,
I am about to finish my development of app and there is one(major) problem which I am facing. The problem goes like this.
In my activity I have set
WindowSoftInputMode = SoftInput.AdjustPan
and I am using this as my application themeThe thing is I want to hide the bottombar when the keybaord pops -up, so for that I have added a globalListener to my rootlayout and I detect that when keyboard is up I hide thebottombar. I have attached the bottombar to the framelayout of my main.axml.Uptill now I had the above thing set but recently i had noticed that I am not able to scroll the entire view when the softkeyboard is up coz i have set adjustPan so I set it to adjustSize in my activity, Now what is happening is I am getting an empty space above my framelayout which is inside DrawerLayout, when ever I am hiding the bottomBar on keybaord pop-up. I am unable to resolve this issue can you kindly help me with that.
My main.axml looks like this
So my problem is I am not able to figure out why and from where that empty space equal to height of bottombar is coming(presumably) and how do I fix that.
Thanks again for such a great library.
The text was updated successfully, but these errors were encountered: