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

Popup out of the screen horizontally in Android sample #839

Merged
merged 4 commits into from
Feb 6, 2021
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
6 changes: 3 additions & 3 deletions samples/XCT.Sample/Pages/Views/Popups/PopupSize.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}