diff --git a/samples/XCT.Sample/Pages/Views/Popups/PopupSize.cs b/samples/XCT.Sample/Pages/Views/Popups/PopupSize.cs index 00cc6be6b..e656bc839 100644 --- a/samples/XCT.Sample/Pages/Views/Popups/PopupSize.cs +++ b/samples/XCT.Sample/Pages/Views/Popups/PopupSize.cs @@ -4,10 +4,10 @@ namespace Xamarin.CommunityToolkit.Sample.Pages.Views.Popups { static class PopupSize { - public static Size Android => new Size(1200, 1000); - - public static Size iOS => new Size(250, 350); + public static Size Android => new Size(1000, 1200); + public static Size iOS => new Size(250, 350); + public static Size UWP => new Size(300, 400); } }