How can I help you?
Liquid Glass Support for .NET MAUI NavigationDrawer
17 Dec 20251 minute to read
The SfNavigationDrawer supports a liquid glass effect (also called acrylic or glass morphism) when you enable the EnableLiquidGlassEffect. This feature adds a frosted, translucent style that blends with the background, giving the Navigation Drawer a modern and elegant look.
NOTE
- This feature is supported only on
.NET 10along withiOS 26andmacOS 26.
<Grid>
<!-- Background to make the glass effect visible while pressing the navigation drawer -->
<Image Source="wallpaper.jpg" Aspect="AspectFill" />
<navigationDrawer:SfNavigationDrawer EnableLiquidGlassEffect="True" />
</Grid>SfNavigationDrawer navigationDrawer = new SfNavigationDrawer
{
EnableLiquidGlassEffect = true
};Behavior and tips
- The glass effect is applied to the Navigation Drawer at render time and during user interaction.
- Place the Navigation Drawer over visually rich content (images, gradients, or color blocks) to better showcase the transient glass effect.
- Visual output and performance may vary by device/platform; keep backgrounds moderately detailed to maintain clarity during interaction.
- For an enhanced UI, set
ContentBackground="Transparent"for theDrawerSettingsandBackground="Transparent"for theContentViewat the sample .
The following GIF demonstrates the liquid glass effect of Navigation Drawer.

NOTE
The liquid glass support is only applicable for slide-on mode.