ios - How to hide control center in ionic/corodova? -
i'm running issue because of ux decision of app.
i have footer bar on screens, require swipe open details of user profile. in ios when swipe bottom of screen up, happens control center come in front of app.
but saw applications when swipe way, control center prompt pointer, swipe again pointer control center come up. comum in games, 1 example youtube app.
i want know if possible kind of behavior in app, through cordova or ionic.
here screens of app better context of i'm talking about.
[
to behavior you're talking about, need add statusbar plugin , set status bar hidden.
cordova plugin add cordova-plugin-statusbar
then add following apps info.plist file:
<key>uistatusbarhidden</key> <true/> <key>uiviewcontrollerbasedstatusbarappearance</key> <false/>
it may still override bottom swipe however. luck!
Comments
Post a Comment