Syncfusion.Maui.ListView 19.4.50-preview

Prefix Reserved
This is a prerelease version of Syncfusion.Maui.ListView.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.Maui.ListView --version 19.4.50-preview
                    
NuGet\Install-Package Syncfusion.Maui.ListView -Version 19.4.50-preview
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Syncfusion.Maui.ListView" Version="19.4.50-preview" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.Maui.ListView" Version="19.4.50-preview" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.Maui.ListView" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Syncfusion.Maui.ListView --version 19.4.50-preview
                    
#r "nuget: Syncfusion.Maui.ListView, 19.4.50-preview"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Syncfusion.Maui.ListView@19.4.50-preview
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Syncfusion.Maui.ListView&version=19.4.50-preview&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.Maui.ListView&version=19.4.50-preview&prerelease
                    
Install as a Cake Tool

The Syncfusion.Maui.ListView package contains the Syncfusion ListView component for .NET MAUI application.SfListView for MAUI is presenting a set of data items in different layouts or views. It can be used to easily visualize your items in groups, sorted and filtered in accordance with your criteria.

Prerequisites

Integrated Development Environment

By using the following IDEs, you can develop .NET MAUI applications

Framework & SDK

The below tool is required to run the .NET MAUI application.

  • .NET 6.0 SDK
  • Android 5.0 (API 21) or higher.
  • iOS 10 or higher.
  • macOS 10.13 or higher.

Key Features

  • Optimized view reusing strategy for enhanced performance.
  • Item templating for rich UI(User Interface).
  • Supports dynamic selection of UI for each item using the DataTemplateSelector.
  • AutoFit items based on the content of ItemTemplate.
  • Supports linear layout and grid layout.
  • Data operations such as sorting, grouping, and filtering.
  • Customizable group header with option to stick in view.
  • Selection with different selection modes and gestures.

Getting Started

To initialize the ListView control add the below code to your xaml file.

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage x:Class="ListViewMauiSample.GettingStartedDemo"
             xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
			 xmlns:local="clr-namespace:ListViewMauiSample"
             xmlns:listView="http://schemas.syncfusion.com/maui"
             BackgroundColor="White">
	<ContentPage.BindingContext>
        <local:BookInfoRepository/>
    </ContentPage.BindingContext>
	<ContentPage.Content>
        	<listView:SfListView x:Name="listView"  Grid.Row="1"
                           SelectionMode="Single"
                           AllowGroupExpandCollapse="True"
                           ItemsSource="{Binding BookInfo}">
			<listView:SfListView.ItemTemplate>
                		<DataTemplate>
                    			<Label x:Name="label" Text="{Binding BookName}" TextColor="Black" VerticalTextAlignment="Center"
                       				FontAttributes="Bold"/>
                		</DataTemplate>
            		</listView:SfListView.ItemTemplate>		   
        	</listView:SfListView>
    </ContentPage.Content>
</ContentPage>

For other features code snippet, please check this documentation link

Resources

Support and feedback

License

This is a commercial product and requires a paid license for possession or use. Syncfusion's licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA. You can purchase a license here or start a free 30-day trial here.

About Syncfusion

Founded in 2001 and headquartered in Research Triangle Park, N.C., Syncfusion has more than 26,000+ customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1600+ components and frameworks for web (Blazor, ASP.NET Core, ASP.NET MVC, ASP.NET WebForms, JavaScript, Angular, React, Vue, and Flutter), mobile (MAUI, Xamarin, Flutter, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, Flutter and UWP). We provide ready-to-deploy enterprise software for dashboards, reports, data integration, and big data processing. Many customers have saved millions in licensing fees by deploying our software.



© Copyright 2021 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-android30.0 is compatible.  net6.0-ios was computed.  net6.0-ios13.6 is compatible.  net6.0-maccatalyst was computed.  net6.0-maccatalyst13.5 is compatible.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (9)

Showing the top 5 NuGet packages that depend on Syncfusion.Maui.ListView:

Package Downloads
Syncfusion.Maui.Inputs

This package provides the functionality to utilize the features of Syncfusion® .NET Maui Input controls like Autocomplete and ComboBox.

Syncfusion.Maui.PdfViewer

This package provides the functionality to utilize the features of Syncfusion® .NET Maui PdfViewer control and more.

Syncfusion.Maui.Chat

This package provides the functionality to utilize the features of Syncfusion® .NET Maui Chat control and more.

VertiGIS.Mobile

Create VertiGIS Mobile apps for Android, iOS, and UWP. Extend your apps with custom components, operations and services.

FireSoft.Maui.Ui

Librerie per lo sviluppo di App Maui di FireSoft Italia Srl

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on Syncfusion.Maui.ListView:

Repository Stars
unoplatform/Uno.Samples
A collection of code samples for the Uno Platform
Strypper/mauisland
MAUIsland 🏝️ is the number 1 controls gallery for .NET MAUI
syncfusion/maui-demos
This repository contains the Syncfusion .NET MAUI control’s samples and the guide to use them
Version Downloads Last Updated
31.1.19 561 9/11/2025
31.1.18 652 9/10/2025
31.1.17 1,017 9/5/2025
30.2.7 3,460 8/25/2025
30.2.6 2,344 8/18/2025
30.2.5 2,098 8/13/2025
30.2.4 3,350 8/7/2025
30.1.42 4,755 7/28/2025
30.1.41 3,374 7/22/2025
30.1.40 3,456 7/14/2025
30.1.39 4,374 7/8/2025
30.1.38 5,041 7/1/2025
30.1.37 3,508 6/25/2025
29.2.11 9,239 6/16/2025
29.2.10 5,477 6/9/2025
29.2.9 1,382 6/5/2025
29.2.8 1,975 6/3/2025
29.2.7 6,022 5/26/2025
29.2.5 6,428 5/21/2025
29.2.4 4,024 5/14/2025
29.1.41 17,768 5/5/2025
29.1.40 3,587 4/28/2025
29.1.39 6,131 4/21/2025
29.1.38 8,162 4/15/2025
29.1.37 11,969 4/8/2025
29.1.35 7,407 4/1/2025
29.1.33 11,142 3/25/2025
28.2.12 9,410 3/19/2025
28.2.11 7,979 3/11/2025
28.2.9 6,277 3/4/2025
28.2.7 5,947 2/25/2025
28.2.6 7,291 2/17/2025
28.2.5 6,072 2/11/2025
28.2.4 8,975 2/4/2025
28.2.3 7,836 1/29/2025
28.1.41 17,129 1/21/2025
28.1.39 8,675 1/14/2025
28.1.38 5,475 1/7/2025
28.1.37 3,594 12/31/2024
28.1.36 3,792 12/23/2024
28.1.35 5,533 12/18/2024
28.1.33 8,067 12/12/2024
27.2.5 22,890 12/2/2024
27.2.4 5,385 11/26/2024
27.2.3 2,517 11/22/2024
27.2.2 17,975 11/15/2024
27.1.58 11,276 11/4/2024
27.1.57 7,364 10/29/2024
27.1.56 3,524 10/23/2024
27.1.55 3,237 10/21/2024
27.1.53 13,830 10/14/2024
27.1.52 8,783 10/7/2024
27.1.51 7,843 9/30/2024
27.1.50 10,426 9/24/2024
27.1.48 13,824 9/18/2024
26.2.14 16,899 9/9/2024
26.2.13 7,302 9/5/2024
26.2.12 3,434 9/2/2024
26.2.11 33,017 8/27/2024
26.2.10 8,934 8/19/2024
26.2.9 7,990 8/12/2024
26.2.8 4,573 8/5/2024
26.2.7 6,252 7/29/2024
26.2.5 4,467 7/26/2024
26.2.4 6,816 7/24/2024
26.1.42 7,228 7/15/2024
26.1.41 8,299 7/8/2024
26.1.40 12,074 7/1/2024
26.1.39 19,523 6/24/2024
26.1.38 6,727 6/18/2024
26.1.35 8,552 6/11/2024
25.2.7 12,059 6/3/2024
25.2.6 4,615 5/28/2024
25.2.5 11,497 5/21/2024
25.2.4 6,814 5/14/2024
25.2.3 11,533 5/8/2024
25.1.42 16,191 4/29/2024
25.1.41 6,239 4/23/2024
25.1.40 12,205 4/15/2024
25.1.39 5,278 4/8/2024
25.1.38 12,700 4/1/2024
25.1.37 14,413 3/26/2024
25.1.35 31,025 3/15/2024
24.2.9 10,384 3/5/2024
24.2.8 8,834 2/27/2024
24.2.7 10,108 2/19/2024
24.2.6 5,184 2/15/2024
24.2.5 2,003 2/12/2024
24.2.4 4,924 2/6/2024
24.2.3 22,685 1/31/2024
24.1.47 6,858 1/23/2024
24.1.46 4,400 1/17/2024
24.1.45 7,273 1/9/2024
24.1.44 4,292 1/3/2024
24.1.43 8,714 12/27/2023
24.1.41 18,193 12/18/2023
23.2.7 13,415 12/6/2023
23.2.6 6,211 11/28/2023
23.2.5 2,941 11/23/2023
23.2.4 5,071 11/20/2023
23.1.44 16,222 11/6/2023
23.1.43 3,800 10/30/2023
23.1.42 3,656 10/23/2023
23.1.41 6,538 10/16/2023
23.1.40 5,040 10/10/2023
23.1.39 2,857 10/4/2023
23.1.38 6,912 9/26/2023
23.1.36 12,612 9/15/2023
22.2.12 5,060 9/5/2023
22.2.11 3,465 8/28/2023
22.2.10 2,006 8/22/2023
22.2.9 7,403 8/14/2023
22.2.8 2,525 8/7/2023
22.2.7 4,679 8/2/2023
22.2.5 3,729 7/27/2023
22.1.39 3,262 7/18/2023
22.1.38 4,686 7/11/2023
22.1.37 5,183 7/3/2023
22.1.36 2,580 6/28/2023
22.1.34 7,633 6/21/2023
21.2.10 3,285 6/13/2023
21.2.9 2,426 6/6/2023
21.2.8 1,418 5/30/2023
21.2.6 2,649 5/22/2023
21.2.5 4,394 5/15/2023
21.2.4 1,446 5/9/2023
21.2.3 2,019 5/3/2023
21.1.41 5,204 4/19/2023
21.1.39 4,062 4/10/2023
21.1.38 1,404 4/3/2023
21.1.37 3,983 3/29/2023
21.1.35 4,858 3/23/2023
20.4.54 15,196 3/13/2023
20.4.53 1,508 3/7/2023
20.4.52 1,711 2/28/2023
20.4.51 3,049 2/21/2023
20.4.50 1,841 2/14/2023
20.4.49 1,423 2/7/2023
20.4.48 2,130 2/1/2023
20.4.44 2,327 1/18/2023
20.4.43 2,111 1/10/2023
20.4.42 1,376 1/4/2023
20.4.41 1,702 12/29/2022
20.4.40 1,081 12/28/2022
20.4.38 1,655 12/21/2022
20.3.61 1,289 12/13/2022
20.3.60 701 12/6/2022
20.3.59 687 11/29/2022
20.3.58 540 11/22/2022
20.3.57 972 11/15/2022
20.3.56 714 11/8/2022
20.3.52 1,546 10/27/2022
20.3.50 735 10/18/2022
20.3.49 479 10/11/2022
20.3.48 367 10/5/2022
20.3.47 1,231 9/29/2022
20.2.50 501 9/20/2022
20.2.49 394 9/13/2022
20.2.48 462 9/6/2022
20.2.46 365 8/30/2022
20.2.45 465 8/23/2022
20.2.44 427 8/16/2022
20.2.43 708 8/8/2022
20.2.40 1,406 7/26/2022
20.2.39 456 7/19/2022
20.2.38 343 7/12/2022
20.2.36 4,799 6/30/2022
20.1.61-preview 380 6/21/2022
20.1.60-preview 357 6/14/2022
20.1.59-preview 286 6/7/2022
20.1.58-preview 619 5/31/2022
20.1.57-preview 309 5/24/2022
20.1.56-preview 345 5/17/2022
20.1.55-preview 415 5/12/2022
20.1.52-preview 364 5/3/2022
20.1.51-preview 341 4/26/2022
20.1.50-preview 283 4/19/2022
20.1.48-preview 286 4/12/2022
20.1.47-preview 435 4/4/2022
19.4.56-preview 401 3/15/2022
19.4.55-preview 284 3/8/2022
19.4.54-preview 318 3/1/2022
19.4.53-preview 380 2/22/2022
19.4.52-preview 264 2/15/2022
19.4.50-preview 236 2/8/2022
19.4.48-preview 353 1/31/2022
19.4.47-preview 269 1/25/2022
19.4.43-preview 257 1/18/2022
19.4.42-preview 262 1/11/2022
19.4.41-preview 294 1/4/2022
19.4.40-preview 254 12/28/2021
19.4.38-preview 365 12/17/2021