From f4da8fe63439f51a1cbb9349d38eab243fd307ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Apr 2026 05:30:14 +0000 Subject: [PATCH 1/2] Bump CommunityToolkit.Maui.Markup and Microsoft.Maui.Controls Bumps CommunityToolkit.Maui.Markup from 5.1.0 to 7.0.1 Bumps Microsoft.Maui.Controls from 9.0.120 to 10.0.41 --- updated-dependencies: - dependency-name: CommunityToolkit.Maui.Markup dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: Microsoft.Maui.Controls dependency-version: 10.0.41 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .../HotChocolateGraphQL.Mobile.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/HotChocolateGraphQL.Mobile/HotChocolateGraphQL.Mobile.csproj b/src/HotChocolateGraphQL.Mobile/HotChocolateGraphQL.Mobile.csproj index bad77f2..668d409 100644 --- a/src/HotChocolateGraphQL.Mobile/HotChocolateGraphQL.Mobile.csproj +++ b/src/HotChocolateGraphQL.Mobile/HotChocolateGraphQL.Mobile.csproj @@ -50,10 +50,10 @@ - + - + From ec3dd916ffe3496d5fb36557bb1078f2675bdd06 Mon Sep 17 00:00:00 2001 From: Brandon Minnick <13558917+TheCodeTraveler@users.noreply.github.com> Date: Mon, 27 Apr 2026 22:41:17 -0700 Subject: [PATCH 2/2] Update BasePage.cs --- src/HotChocolateGraphQL.Mobile/Pages/BasePage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HotChocolateGraphQL.Mobile/Pages/BasePage.cs b/src/HotChocolateGraphQL.Mobile/Pages/BasePage.cs index ed1013d..fa440fb 100644 --- a/src/HotChocolateGraphQL.Mobile/Pages/BasePage.cs +++ b/src/HotChocolateGraphQL.Mobile/Pages/BasePage.cs @@ -8,7 +8,7 @@ abstract partial class BasePage : BasePage where TViewModel : BaseV { protected BasePage(in TViewModel viewModel, in string? title = null, in bool shouldUseSafeArea = true) : base(viewModel, title) { - On().SetUseSafeArea(shouldUseSafeArea); + SafeAreaEdges = shouldUseSafeArea ? Microsoft.Maui.SafeAreaEdges.All : Microsoft.Maui.SafeAreaEdges.None; On().SetModalPresentationStyle(UIModalPresentationStyle.FormSheet); }