nikogram
nikogram

Reputation: 61

iOS Launchscreen is not being displayed in Xamarin.Forms

I don't know what happened but since some days ago the LaunchScreen is not being displayed. Check the following:

enter image description here

enter image description here

enter image description here

Any ideas?

Upvotes: 0

Views: 543

Answers (1)

MilanG
MilanG

Reputation: 2604

Seems that you want to use LaunchImage Assets for your LaunchScreen. You are setting Source & LaunchScreen, both, at the same time.

If you want to use LaunchImage Assets, Delete the content inside the Launch Screen in info.plist as below:

enter image description here

Launch Screen uses the LaunchScreen.storyboard single file to use across the devices (iPhone/iPads). While Assets Source uses the Image catalogs, to set specific Launch Image for some specific device of resolution.

You have to use both of this options as an alternatives.

Upvotes: 1

Related Questions