Skip to main content

DevExpress Shimmer View for MAUI

The ShimmerView control allows you to add a shimmer effect when loading data in your mobile app.

DevExpress Shimmer View for MAUI

Download and install the DevExpress.Maui.Controls package from the DevExpress NuGet Gallery to obtain the ShimmerView component.

Add a Shimmer View to the Page

Before you proceed, read the following topic: Get Started with DevExpress Controls for .NET Multi-platform App UI (.NET MAUI).

The following code sample shows how to add a Shimmer View instance to a page:

<ContentPage ...
    xmlns:dxco="clr-namespace:DevExpress.Maui.Controls;assembly=DevExpress.Maui.Controls">
    <dxco:ShimmerView ...
                    WaveWidth="0.6" 
                    WaveBackgroundOpacity="0.3"/>
</ContentPage>

The following example shows how to use the ShimmerView control in your .NET MAUI App:

View Example