Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Xamarin.MacDev/IPhoneImageSizes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,14 @@ public static class IPhoneImageSizes

public static readonly ImageSize LaunchRetinaX = new ImageSize (1125, 2436);
public static readonly ImageSize LaunchRetinaXLandscape = new ImageSize (2436, 1125);

public static readonly ImageSize LaunchRetinaXR = new ImageSize (828, 1792);
public static readonly ImageSize LaunchRetinaXRLandscape = new ImageSize (1792, 828);

public static readonly ImageSize LaunchRetinaXSMax = new ImageSize (1242, 2688);
public static readonly ImageSize LaunchRetinaXSMaxLandscape = new ImageSize (2688, 1242);
}

public static class IPadImageSizes
{
public static readonly ImageSize Icon = new ImageSize (72, 72);
Expand Down