---
title: "Introducing .NET MAUI Cards: Craft Modern UIs with Beautiful Interfaces"
published_at: "2023-12-22T10:36:04+00:00"
modified_at: "2026-01-15T08:31:27+00:00"
url: "https://www.syncfusion.com/blogs/post/dotnet-maui-cards-control"
excerpt: "This blog explains the features of the new Syncfusion .NET MAUI Cards control rolled out in the 2023 Volume 4 release."
taxonomy_category:
  - ".NET MAUI"
  - "Desktop"
  - "Mobile"
  - "Syncfusion"
  - "UI"
  - "What's new"
taxonomy_post_tag:
  - ".NET MAUI"
  - "desktop"
  - "MAUI"
  - "Mobile"
  - "What's New"
---

# Introducing .NET MAUI Cards: Craft Modern UIs with Beautiful Interfaces

[Muniappan Subramanian](https://www.syncfusion.com/blogs/author/muniappan-subramanian)

![Introducing .NET MAUI Cards: Crafting Modern UIs with Beautiful Interfaces](https://www.syncfusion.com/blogs/wp-content/uploads/2023/12/Introducing-.NET-MAUI-Cards-Crafting-Modern-UIs-with-Beautiful-Interfaces-1.png)


We’re excited to share some fantastic news with our community! In the latest Syncfusion Essential Studio® [2023 Vol. 4 release](https://www.syncfusion.com/forums/185916/essential-studio-2023-volume-4-main-release-v24-1-41-is-available-for-download)
, we added a new control to transform how you design and interact with your apps: the [.NET MAUI Cards control!](https://www.syncfusion.com/maui-controls/maui-cards)

This control allows you to create dismissible cards or a stack of cards. You can organize a sequence of cards where only one card is visible at a time. You can easily navigate through the stack by swiping to reveal the next card in the sequence.

Let’s explore its features and the steps to get started!

## Key features

The key features of the .NET MAUI Cards control are as follows:

- [Card layout](#Card)
- [Swiped card edge](#Swiped)
- [Dismissible cards](#Dismissible)
- [Border customization](#Border)
- [Corner radius](#Corner)
- [Indicator customization](#Indicator)

### Card layout

This feature allows you to create an appealing stack of cards where only one is visible at a time. Easily swipe through the stack to reveal the next card in the sequence. Stack the cards on the left, right, top, or bottom of the layout, and navigate effortlessly in all four directions.

![Card Layout in .NET MAUI Cards](https://www.syncfusion.com/blogs/wp-content/uploads/2023/12/Card-Layout-in-.NET-MAUI-Cards.gif)

Card layout feature in .NET MAUI Cards

### Swiped cards at the edge

Cards that have been swiped will be visually represented at the edge, providing a clear cue that they have already been swiped.

![Showing swiped cards using .NET MAUI Cards control](https://www.syncfusion.com/blogs/wp-content/uploads/2023/12/Showing-swiped-cards-using-.NET-MAUI-Cards-control-2.png)

Showing swiped cards using .NET MAUI Cards control

### Dismissible cards

Customize the dismissal experience by allowing cards to be dismissed with or without a fade-out effect. Control the dismissal direction—left or right—and restrict dismissals when needed. This flexibility ensures seamless and tailored user interaction.

![Dismissing Cards Using the .NET MAUI Cards Control](https://www.syncfusion.com/blogs/wp-content/uploads/2023/12/Dismissing-Cards-Using-the-.NET-MAUI-Cards-Control.gif)

Dismissing cards using the .NET MAUI Cards control

### Border customization

Easily customize the border of your cards to match your app’s theme. Effortlessly define the border’s color and thickness, allowing you to align the cards with your overall design aesthetic.

![Customizing the Border in .NET MAUI Cards](https://www.syncfusion.com/blogs/wp-content/uploads/2023/12/Customizing-the-Border-in-.NET-MAUI-Cards.png)

Customizing the border in .NET MAUI Cards

### Corner radius

Elevate the appeal of your cards by customizing the corner radius. Achieve rounded edges and provide different corner radii to different edges, allowing for a polished and refined look.

![Customizing Corner Radius in .NET MAUI Cards](https://www.syncfusion.com/blogs/wp-content/uploads/2023/12/Customizing-Corner-Radius-in-.NET-MAUI-Cards.png)

Customizing corner radius in .NET MAUI Cards

### Indicator customization

Make cards easier to understand with customizable indicators positioned at the edges of a card. These indicators signify specific states based on the current content of the card, providing users with valuable context.

![Indicator Customization in .NET MAUI Cards](https://www.syncfusion.com/blogs/wp-content/uploads/2023/12/Indicator-Customization-in-.NET-MAUI-Cards.png)

Indicator customization in .NET MAUI Cards

**Note:** For more details, refer to the [.NET MAUI Cards control documentation](https://help.syncfusion.com/maui/cards/getting-started)
.

## Getting started with the .NET MAUI Cards control

We have seen the key features of the .NET MAUI Cards control. Let’s learn how to integrate it into your .NET MAUI app and utilize its features:

### Step 1: Create a .NET MAUI app

First, create a [.NET MAUI application.](https://learn.microsoft.com/en-us/dotnet/maui/get-started/first-app?view=net-maui-7.0&tabs=vswin&pivots=devices-android)

### Step 2: Add the .NET MAUI Cards NuGet package

Syncfusion .NET MAUI controls are available in the [NuGet gallery](https://www.nuget.org/)
. To add the .NET MAUI Cards control to your project, open the NuGet package manager in [Visual Studio](https://visualstudio.microsoft.com/)
, search for [Syncfusion.Maui.Cards](https://www.nuget.org/packages/Syncfusion.Maui.Cards)
, and then install it.

### Step 3: Register the handler

In the **MauiProgram.cs** file, register the handler for** Syncfusion core**.

```
using Syncfusion.Maui.Core.Hosting;

public static class MauiProgram
{
    public static MauiApp CreateMauiApp()
    {
        var builder = MauiApp.CreateBuilder();
        builder
          .UseMauiApp<App>()
          .ConfigureSyncfusionCore()
          .ConfigureFonts(fonts =>
          {
              fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
              fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
              fonts.AddFont("Roboto-Medium.ttf", "Roboto-Medium");
              fonts.AddFont("Roboto-Regular.ttf", "Roboto-Regular");
          });
        return builder.Build();
    }
}
```

### Step 4: Add the namespace

Now, add the **Syncfusion.Maui.Cards** namespace in your XAML page.

```
xmlns:cards= "clr-namespace:Syncfusion.Maui.Cards;assembly=Syncfusion.Maui.Cards"
```

### Step 5: Initialize the Syncfusion .NET MAUI Cards control

Finally, initialize the Syncfusion .NET MAUI Cards control. Refer to the following code example.

```
xmlns:cards="clr-namespace:Syncfusion.Maui.Cards;assembly=Syncfusion.Maui.Cards"

<Grid>
 <cards:SfCardLayout x:Name="cardLayout" HeightRequest="220" WidthRequest="{OnPlatform Android=340, iOS=340, Default=360}" HorizontalCardSpacing="10" VerticalCardSpacing="0" Padding="20,20,20,10">
  <cards:SfCardView x:Name="thirdCard" BorderColor="#9D6B1F" CornerRadius="20" Padding="-1,-1,0,0">
   <Grid>
    <Image Source="eyes.jpg" Aspect="AspectFill"/>
    <Grid Padding="20" Background="#9D6B1F" Opacity="0.9">
     <Grid.RowDefinitions>
      <RowDefinition Height= "Auto"/>
      <RowDefinition Height= "Auto"/>
      <RowDefinition Height= "Auto"/>
      <RowDefinition Height= "Auto"/>
      <RowDefinition Height= "Auto"/>
     </Grid.RowDefinitions>
     <Grid Grid.Row= "1">
      <Grid.ColumnDefinitions>
       <ColumnDefinition Width= "60"/>
       <ColumnDefinition Width="*"/>
      </Grid.ColumnDefinitions>
      <Image Source="cardchip.png" WidthRequest="40" HeightRequest="50" HorizontalOptions="Start" VerticalOptions="Start" Margin="0,20,0,0"/>
      <Label Grid.Column="1" Text="Wells Fargo" HorizontalOptions="End" VerticalOptions="Start" TextColor="White" FontSize="16" FontFamily="Roboto-Medium"/>
     </Grid>
     <Label Grid.Row="2" HorizontalOptions="Start" VerticalOptions="Start" Text=" 8 5 7 1    7 2 7 2    9 5 8 0    3 1 5 7" TextColor="White" FontFamily="Roboto-Regular"/>
     <Label Grid.Row="3" HorizontalOptions="Start" VerticalOptions="Start" Text="Valid till : 12/24" FontSize="12" TextColor="#f2debf" Padding="0,10,0,0" FontFamily="Roboto-Regular"/>
     <Label Grid.Row="4" HorizontalOptions="Start" VerticalOptions="End" Text="Rick Sanchez" Padding="0,10,0,0" FontSize="16" TextColor="White" FontFamily="Roboto-Medium"/>
    </Grid>
   </Grid>

  </cards:SfCardView>

  <cards:SfCardView x:Name="secondCard" BorderColor="#224AD8" CornerRadius="20" Padding="-1,-1,0,0">
   <Grid>
    <Image Source="coinslandscape.jpg" Aspect="AspectFill"/>
    <Grid Padding="20" Background="#224AD8" Opacity="0.9">
     <Grid.RowDefinitions>
      <RowDefinition Height= "Auto"/>
      <RowDefinition Height= "Auto"/>
      <RowDefinition Height= "Auto"/>
      <RowDefinition Height= "Auto"/>
      <RowDefinition Height= "Auto"/>
     </Grid.RowDefinitions>
     <Grid Grid.Row= "1">
      <Grid.ColumnDefinitions>
       <ColumnDefinition Width= "60"/>
       <ColumnDefinition Width="*"/>
      </Grid.ColumnDefinitions>
      <Image Source="cardchip.png" WidthRequest="40" HeightRequest="50" HorizontalOptions="Start" VerticalOptions="Start" Margin="0,20,0,0"/>
      <Label Grid.Column="1" Text="Chase" HorizontalOptions="End" VerticalOptions="Start" TextColor="White" FontSize="16" FontFamily="Roboto-Medium"/>
     </Grid>
     <Label Grid.Row="2" HorizontalOptions="Start" VerticalOptions="Start" Text=" 2 6 1 9    0 9 3 8    4 8 1 9    9 9 1 7" TextColor="White" FontFamily="Roboto-Regular"/>
     <Label Grid.Row="3" HorizontalOptions="Start" VerticalOptions="Start" Text="Valid till : 04/25" FontSize="12" TextColor="#bdc9f5" Padding="0,10,0,0" FontFamily="Roboto-Regular"/>
     <Label Grid.Row="4" HorizontalOptions="Start" VerticalOptions="End" Text="Rick Sanchez" Padding="0,10,0,0" FontSize="16" TextColor="White" FontFamily="Roboto-Medium"/>
    </Grid>
   </Grid>

  </cards:SfCardView>

  <cards:SfCardView x:Name="firstCard" BorderColor="#5716B0" CornerRadius="20" Padding="-1,-1,0,0">
   <Grid>
    <Image Source="buildinglandscape.jpg" Aspect="AspectFill"/>
    <Grid Padding="20" Background="#5716B0" Opacity="0.9">
     <Grid.RowDefinitions>
      <RowDefinition Height= "Auto"/>
      <RowDefinition Height= "Auto"/>
      <RowDefinition Height= "Auto"/>
      <RowDefinition Height= "Auto"/>
      <RowDefinition Height= "Auto"/>
     </Grid.RowDefinitions>
     <Grid Grid.Row= "1">
      <Grid.ColumnDefinitions>
       <ColumnDefinition Width= "60"/>
       <ColumnDefinition Width="*"/>
      </Grid.ColumnDefinitions>
      <Image Source="cardchip.png" WidthRequest="40" HeightRequest="50" HorizontalOptions="Start" VerticalOptions="Start" Margin="0,20,0,0"/>
      <Label Grid.Column="1" Text="Synchrony Financial" HorizontalOptions="End" VerticalOptions="Start" TextColor="White" FontSize="16" FontFamily="Roboto-Medium"/>
     </Grid>
     <Label Grid.Row="2" HorizontalOptions="Start" VerticalOptions="Start" Text=" 5 9 0 1    8 0 2 3    7 1 9 2    3 3 0 4" TextColor="White" FontFamily="Roboto-Regular"/>
     <Label Grid.Row="3" HorizontalOptions="Start" VerticalOptions="Start" Text="Valid till : 06/26" FontSize="12" Padding="0,10,0,0" TextColor="#b88ef1" FontFamily="Roboto-Regular"/>
     <Label Grid.Row="4" HorizontalOptions="Start" VerticalOptions="End" Text="Rick Sanchez" Padding="0,10,0,0" FontSize="16" TextColor="White" FontFamily="Roboto-Medium"/>
    </Grid>
   </Grid>
  </cards:SfCardView>
 </cards:SfCardLayout>
</Grid>
```

After executing the previous code examples, you’ll get an output like in the following image.

![Integrating the Cards Control in .NET MAUI App](https://www.syncfusion.com/blogs/wp-content/uploads/2023/12/Integrating-the-Cards-Control-in-.NET-MAUI-App.png)

Integrating the Cards control in the .NET MAUI app

## GitHub references

For more details, refer to the [.NET MAUI Cards control demo on GitHub.](https://github.com/syncfusion/maui-demos/tree/master/MAUI/Cards/SampleBrowser.Maui.Cards)

## Conclusion

Thanks for reading! In this blog, I explored the features of the new Syncfusion [.NET MAUI Cards Control](https://www.syncfusion.com/maui-controls/maui-cards)
 that rolled out in the [2023 Volume 4 release](https://www.syncfusion.com/forums/185916/essential-studio-2023-volume-4-main-release-v24-1-41-is-available-for-download)
. You can learn more about the latest .NET MAUI advancements on our [Release Notes](https://help.syncfusion.com/common/essential-studio/release-notes/v23.1.36)
 and [What’s New](https://www.syncfusion.com/products/whatsnew)
 pages. Try them out and leave your feedback in the comments section below!

Download [Essential Studio® for .NET MAUI](https://www.syncfusion.com/downloads/maui)
 to start evaluating them immediately.

If you have any questions, contact us through our [support forum](https://www.syncfusion.com/forums)
, [support portal](https://support.syncfusion.com/)
, or [feedback portal](https://www.syncfusion.com/feedback/)
. We are always happy to help you!

## Related blogs

- [Syncfusion Essential Studio® 2023 Volume 4 Is Here!](https://www.syncfusion.com/blogs/post/essential-studio-2023-volume-4.aspx)
- [Introducing the New .NET MAUI Sunburst Chart Control](https://www.syncfusion.com/blogs/post/dotnet-maui-sunburst-chart.aspx)
- [Introducing the New .NET MAUI Switch Control](https://www.syncfusion.com/blogs/post/dotnet-maui-switch-control.aspx)
- [What’s New in 2023 Volume 4: .NET MAUI Charts](https://www.syncfusion.com/blogs/post/dotnet-maui-charts-2023-volume-4.aspx)
