I still haven't had any luck with this issue, no updates on the C3 issues Git either.
Sorry guys, i have been busy on the past month. I manage to find away today. I dig into the xcode project and looked around.
Add this into the style.css
— only screen
and (device-width : 375px)
and (device-height : 812px)
and (-webkit-device-pixel-ratio : 3)
and (orientation : portrait) {
html {
height: 812px !important;
width: 375px !important;
}
}
— only screen
and (device-width : 375px)
and (device-height : 812px)
and (-webkit-device-pixel-ratio : 3)
and (orientation : landscape) {
html {
width: 812px !important;
height: 375px !important;
}
}
And you can start tackle the issue from there.
Remember to delete the platform first then re-add it again.
Steps:
1) Export from construct 3(cordova project)
2) Extract the file and add the code above into style.css
3) add ios platform for cordova
4) Add ur iphoneX splash screen.
Things should work fine but you might need to adjust some part.
Remember to delete the existing app in the phone, sometimes it may cache it.