Skip to content

Commit

Permalink
VSTS 702327: Launch image sizes for iPhone XS Max and iPhone XR (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
olegoid committed Oct 12, 2018
1 parent 61e811c commit e348034
Showing 1 changed file with 7 additions and 1 deletion.
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

0 comments on commit e348034

Please sign in to comment.