From f964dacb552ea35d42c5062739d00dbdd970b589 Mon Sep 17 00:00:00 2001 From: ray Date: Wed, 3 Dec 2025 19:36:10 +0800 Subject: [PATCH] fix: SfBottomSheet theme customization SfBottomSheet theme customization does not work following the doc: https://help.syncfusion.com/maui-toolkit/themes/keys --- maui/src/BottomSheet/SfBottomSheet.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/maui/src/BottomSheet/SfBottomSheet.cs b/maui/src/BottomSheet/SfBottomSheet.cs index 8070e92..3172256 100644 --- a/maui/src/BottomSheet/SfBottomSheet.cs +++ b/maui/src/BottomSheet/SfBottomSheet.cs @@ -1549,6 +1549,8 @@ void InitializeContentBorder() void ApplyThemeResources() { SetDynamicResource(OverlayBackgroundColorProperty, "SfBottomSheetOverlayBackgroundColor"); + SetDynamicResource(BackgroundProperty, "SfBottomSheetBackground"); + SetDynamicResource(GrabberBackgroundProperty, "SfBottomSheetGrabberBackground"); } ///