global option to disable/enable add statusbar on fullscreen detection
See original GitHub issuethis bug was driving me insane the last few days because I was not able to see if its produced by cordova-plugin-statusbar, meteor 1.3beta11 or framework7.
http://framework7.io/docs/status-bar.html
please add an option to manually disable/enable the auto detection which is adding a statusbar when the app is in fullscreen or not.
Problem with cordova builds on iOS Device/Simulator
I had the problem that your auto detection was adding some kind of margin/padding on top of my view so I had my native ios statusbar and an empty space with the same size right under the native statusbar. this space was driving me crazy because it even appears when I dont add a statusbar-overlay div
in my html
container. The detection code was adding the with-statusbar-overlay
so the space was empty and you have seen the background color of body
.
to fix this removed the complete statusbar block in the css
but this is just a workaround because the fake html statusbar is now broken and cant be used anymore. It would be nice if it would be possible to disable this auto detection or make it more stable to avoid the statusbar when its not necessary.
Issue Analytics
- State:
- Created 8 years ago
- Comments:7 (3 by maintainers)
Top GitHub Comments
Do you mean the gap between navbar and the list? This is the default CSS
margin
on.list
. You can disabled it byno-margin
class on listExcellent! So I assume I can add this
no-margin
class to the first element within.page-content
on each page. Thank you.