This thread was migrated from an old forum. It may contain information that are no longer valid. For further assistance, please post a new question or open a support ticket from the Customer Support portal.
If I build my app without a splash screen it fills the entire screen (iOS). If I add a splash screen it squishes the app and adds blank space at the top add bottom. See attached images. The splash screen is a png file, the resolution is 750x1334. I see this behaviour on all iOS phone devices and emulators.
The issue is because of not using proper splash images according to the resolutions in iOS channel. As per the Apple standards, below are the resolutions for the splash images.
You have to use below-mentioned splash screen images into the application. The name could be anything but the size and naming extension must follow.
From Xcode 9 onwards we need to provide App Store icon sized 1024x1024 and other App Icons image resolutions within the Xcode itself. This can be done by adding Image Assets from Asset Catalog [ -> App Icons & Launch Images -> New iOS App Icon ] and fill out all the required Icon image sizes.
The CFBundleIconName in Info.pList will be the same as App Icon name that you have provided. (Default value is: AppIcon)
If you were not using assets catalog, now it is the time to migrate to it.
Kindly go through the video provided in the below url, demonstrates to resolve the reported issue.