How to change the image launch screen using story to show picture display in rotated view when ipad in portrait orientation ?
Current launch screen
-Image Portrait Orientation
-Image Landscape Orientation
-Info Setting
Expected launch screen as below (Not Working)
-Expected Launch Screen
I have uploaded the entire sample source here
Since you started with a SwiftUI app, you're better off using the available Info.plist keys to define the contents of your launch screen, rather than a Launch Storyboard like shown in your project. These keys are already configured for you when you create a new SwiftUI app. Configure a launch screen in an information property list explains how to set the keys for existing projects, and UILaunchScreen has the keys and values that are available.
One of the most important aspects of launching is that you should downplay it, and there's a section in the Human Interface Guides that you should read regarding this. This typically means that the contents of your launch screen reflect the first screen the customer is going to see once launching is completed, rather than a splash screen for branding. Using large photos like your example here rarely falls in line with those recommendations.
— Ed Ford, DTS Engineer