diff --git a/src/OverSheet/Platforms/Android/OverSheetExtensions.cs b/src/OverSheet/Platforms/Android/OverSheetExtensions.cs index e33b95a..c6a1402 100644 --- a/src/OverSheet/Platforms/Android/OverSheetExtensions.cs +++ b/src/OverSheet/Platforms/Android/OverSheetExtensions.cs @@ -22,14 +22,11 @@ public static void ShowBottomSheet(this Page page, IView content, float cornerRa var viewToShow = content.ToPlatform(mauiContext); - SetCornerRadius(context, cornerRadius); UpdateBackgroundColor(context,viewToShow); - BottomSheetBehavior.From(viewToShow); - BottomSheetDialog.SetContentView(viewToShow); - //BottomSheetDialog.Show(); + BottomSheetDialog.Show(); }