You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Liquid Glass Effect in .NET MAUI Backdrop Page (SfBackdropPage)
11
11
12
-
The [SfBackdropPage](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Backdrop.SfBackdropPage.html) supports a liquid glass appearance on both layers. Enable the effect directly on the [BackdropBackLayer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Backdrop.BackdropBackLayer.html) and [BackdropFrontLayer](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Backdrop.BackdropFrontLayer.html) by setting their [EnableLiquidGlassEffect]() properties to true. This improves visual depth and readability when the backdrop layers are placed over images or colorful layouts.
12
+
The Liquid Glass Effect introduces a modern, translucent design with adaptive color tinting and light refraction, creating a sleek, glass like user experience that remains clear and accessible. This section explains how to enable and customize the effect in .NET MAUI Backdrop Page's Front or Back layer.
13
13
14
-
## Platform and Version Support
14
+
## Apply liquid glass effect
15
15
16
-
1. This feature is supported on .NET 10 or greater.
17
-
2. This feature is supported on macOS 26 and iOS 26 or later.
18
-
3. On platforms or versions below these requirements, the layers render without the acrylic blur effect and fall back to a standard background.
16
+
Follow these steps to enable and configure the Liquid Glass Effect in the Front or Back Layer:
19
17
20
-
##Prerequisites
18
+
### Step 1: Enable the liquid glass effect on Front or Back Layer
21
19
22
-
- Add the [Syncfusion.Maui.Backdrop](https://www.nuget.org/packages/Syncfusion.Maui.Backdrop) package (for SfBackdropPage, BackdropFrontLayer, BackdropBackLayer).
20
+
Set the `EnableLiquidGlassEffect` property to `true` in the `SfBackdropPage` control's Front or Back Layer to apply the Liquid Glass Effect.
23
21
24
-
##Apply Liquid Glass Effect to the back layer
22
+
### Step 2: Customize the background
25
23
26
-
Turn on the liquid glass effect on the back layer by setting [EnableLiquidGlassEffect]()to true.
24
+
To achieve a glass like background in the Front or Back Layer, set the `Background` property to `Transparent`. The background will then be treated as a tinted color, ensuring a consistent glass effect across the controls.
# Liquid Glass Effect in .NET MAUI Calendar (SfCalendar)
11
11
12
-
The [SfCalendar](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Calendar.SfCalendar.html) supports a liquid glass appearance by hosting the control inside the Syncfusion [SfGlassEffectsView](). You can customize the effect using properties such as [EffectType](), [EnableShadowEffect](), and round the corners using [CornerRadius](). This approach improves visual depth and readability when the calendar is placed over images or colorful layouts.
12
+
The Liquid Glass Effect introduces a modern, translucent design with adaptive color tinting and light refraction, creating a sleek, glass like user experience that remains clear and accessible. This section explains how to enable and customize the effect in the Syncfusion® .NET MAUI Calendar (SfCalendar) control.
13
13
14
-
Additionally, when the calendar is shown in [Dialog](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Calendar.CalendarMode.html#Syncfusion_Maui_Calendar_CalendarMode_Dialog) mode, you can apply the glass effect to the pop-up by enabling the [EnableLiquidGlassEffect]() property on the calendar.
14
+
## Apply liquid glass effect
15
15
16
-
## Platform and Version Support
16
+
Follow these steps to enable and configure the Liquid Glass Effect in the Calendar control:
17
17
18
-
1. This feature is supported on .NET 10 or greater.
19
-
2. This feature is supported on macOS 26 and iOS 26 or later.
20
-
3. On platforms or versions below these requirements, the control renders without the acrylic blur effect and falls back to a standard background.
18
+
### Step 1: Wrap the control inside glass effect view
21
19
22
-
## Prerequisites
20
+
To apply the Liquid Glass Effect to Syncfusion® .NET MAUI `Calendar` control, wrap the control inside the `SfGlassEffectView` class.
23
21
24
-
- Add the [Syncfusion.Maui.Core](https://www.nuget.org/packages/Syncfusion.Maui.Core/) package (for SfGlassEffectsView).
25
-
- Add the [Syncfusion.Maui.Calendar](https://www.nuget.org/packages/Syncfusion.Maui.Calendar/) package (for SfCalendar).
22
+
For more details, refer to the `Liquid Glass Getting Started documentation`.
26
23
27
-
##Apply Liquid Glass Effect to SfCalendar
24
+
### Step 2: Enable the liquid glass effect on Image Editor
28
25
29
-
Wrap the [SfCalendar](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Calendar.SfCalendar.html) inside an [SfGlassEffectsView]()to give the calendar surface a glass (blurred or clear) appearance.
26
+
Set the `EnableLiquidGlassEffect` property to `true` in the `SfCalendar` control to apply the Liquid Glass Effect. When enabled, the effect is also applied to its dependent controls and provides responsive interaction for a smooth and engaging user experience.
* Liquid Glass effects are most visible over images or colorful backgrounds.
80
-
* Use EffectType="Regular" for a blurrier look and "Clear" for a glassy look.
81
-
82
-
## Enable Glass Effect in Dialog Mode
30
+
To achieve a glass like background in the Calendar, set the `Background` property to `Transparent`. The background will then be treated as a tinted color, ensuring a consistent glass effect across the controls.
83
31
84
-
When the calendar is displayed in [Dialog](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Calendar.CalendarMode.html#Syncfusion_Maui_Calendar_CalendarMode_Dialog) mode, enable the liquid glass effect by setting [EnableLiquidGlassEffect]() to true.
32
+
The following code snippet demonstrates how to apply the Liquid Glass Effect to the `SfCalendar` control:
* The dialog gains the glass effect only when EnableLiquidGlassEffect is true.
134
-
135
-
## Key Properties
136
-
137
-
-[EffectType](): Choose between Regular (blurry) and Clear (glassy) effects.
138
-
-[EnableShadowEffect](): Enables a soft shadow around the acrylic container.
139
-
-[CornerRadius](): Rounds the corners of the acrylic container.
140
-
- Padding/Height/Width: Adjust layout around the embedded calendar.
141
-
-[EnableLiquidGlassEffect]() (dialog): Enables the glass effect for the calendar’s dialog mode.
142
-
143
-
## Best Practices and Tips
144
-
145
-
- Hosting the calendar inside [SfGlassEffectsView]() gives the calendar body an acrylic look.
146
-
- In dialog mode, the dialog surface applies the glass effect only when [EnableLiquidGlassEffect]() is true.
147
-
- For the most noticeable effect, place the control over images or vibrant backgrounds.
148
-
149
-
The following screenshot illustrates [SfCalendar](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Calendar.SfCalendar.html) hosted within an acrylic container, and the dialog mode using the glass effect.
44
+
* Supported on `macOS 26 or higher` and `iOS 26 or higher`.
0 commit comments