Articles in this section
Category / Section

How to reuse the dismissed cards in Xamarin.Forms SfCardView

1 min read

This section explains how to reuse a dismissed card in SfCardView. This allows reusing a single card for showing different content with every swipe. This will optimize the memory usage of your Xamarin application by avoid creating separate card for each content.

 

You can refer to this Getting Started documentation for more details about the CardView.


SfCardView supports dismissing a card from the view by enabling the SwipeToDismiss property. This property also enables reusing the dismissed card to optimize the memory usage of your Xamarin application. Please refer the below code snippet to reuse the dismissed card.

 

To add cards to your project, open the NuGet package manager in Visual Studio, search for Syncfusion.Xamarin.Cards, and then install it.

[XAML]

<StackLayout HorizontalOptions="Fill" VerticalOptions="Center">
 
            <!--  CardView with SwipeToDismiss property enabled  -->
            <cards:SfCardView
                SwipeToDismiss="True"
                Dismissed="SfCardView_Dismissed"
                HorizontalOptions="Center"
                VerticalOptions="Center">
 
                <!--  Label to show a content inside card  -->
                <Label
                    BackgroundColor="Red"
                    FontSize="Large"
                    HeightRequest="100"
                    HorizontalOptions="CenterAndExpand"
                    HorizontalTextAlignment="Center"
                    Text="Card View"
                    TextColor="White"
                    VerticalOptions="CenterAndExpand"
                    VerticalTextAlignment="Center"
                    WidthRequest="300" />
 
            </cards:SfCardView>
 
</StackLayout>

[C#]

private int cardNumber;
 
private async void SfCardView_Dismissed(System.Object sender, Syncfusion.XForms.Cards.DismissedEventArgs e)
        {
            await Task.Delay(400);
            SfCardView view = sender as SfCardView;
            (view.Content as Label).Text = "Card View " + cardNumber.ToString();
            view.IsDismissed = false;
            cardNumber++;
        }

 

Note:

SwipeToDismiss Property won’t work when you add the SfCardView as a child of SfCardLayout.

Output

CardView

 

View the sample in GitHub

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied