Random white bar on login screen of mobile app

0
On my mobile app (screenshot included) there is a random white bar that appeared a couple of versions ago that only appears on iOS and we haven't been able to determine the cause. I am wondering if anyone else has seen this issue and know what causes it.  The top portion of the screenshot with the company name and info has been cropped out and you can see the white bar at the bottom.  It's actually present in another iOS application as well and again only affecting iOS users.  
asked
3 answers
1

I'm not sure if this is the solution but have you seen this question? https://forum.mendix.com/link/questions/89340

They had a white bar appearing below their status bar. I believe the mobile features widget was used to solve their issue.

https://appstore.home.mendix.com/link/app/48902/Mendix/Mobile-features

answered
0

Have you tried GapDebug and inspected the app? I wonder if the white bar is because of a fixed pixel height on the background? To my knowledge to modeler doesn't output any css classes that are OS specific.

answered
0

I found what the issue was for me and why it was only affecting iOS.  It was the iOS 11 status bar and a line of code needed to be added to the cordova config.xml during the build.  

<plugin name="cordova-plugin-disable-ios11-statusbar" source="npm" spec="*"/>

 

answered