1

I am working in xamarin ios. I found a difference between using LaunchImages from Assets and using LaunchScreen. When I use LaunchImages I feel that the UI gets little zoomed. But if I use LaunchScreen then its look fine.

Why this is happening? And what can I do to fix it?

anand
  • 1,399
  • 5
  • 23
  • 55

2 Answers2

1

If your UI looks little zoomed when using launchimages, its because lanch image with proper size is not added for specific devices in a launchImage asset of image.xcimageasset section.

It will work if you add a proper image for the specific device

enter image description here

launch Image size guideline provided by apple are like given below: https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/launch-screen/

enter image description here

Satish Mavani
  • 4,897
  • 2
  • 20
  • 30
0

LaunchScreen is the storyboard specially provided to setup your Launch Screen.

In LaunchScreen you can set the proper constraints and thus show the image with proper layout in every iOS Devices, if proper constraints applied.

Hope it helps.

Bhavin Kansagara
  • 2,866
  • 1
  • 16
  • 20