Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit c9b606a

Browse files
authored
Popup out of the screen horizontally in Android sample (#839)
* Fix popup out of horizontal bounds #653 (comment) * Device Size dependent * Essentials namespace * revert
1 parent 33e24e5 commit c9b606a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

samples/XCT.Sample/Pages/Views/Popups/PopupSize.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ namespace Xamarin.CommunityToolkit.Sample.Pages.Views.Popups
44
{
55
static class PopupSize
66
{
7-
public static Size Android => new Size(1200, 1000);
8-
9-
public static Size iOS => new Size(250, 350);
7+
public static Size Android => new Size(1000, 1200);
108

9+
public static Size iOS => new Size(250, 350);
10+
1111
public static Size UWP => new Size(300, 400);
1212
}
1313
}

0 commit comments

Comments
 (0)