VirtualList.Maui
0.0.2-beta
This is a prerelease version of VirtualList.Maui.
dotnet add package VirtualList.Maui --version 0.0.2-beta
NuGet\Install-Package VirtualList.Maui -Version 0.0.2-beta
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="VirtualList.Maui" Version="0.0.2-beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add VirtualList.Maui --version 0.0.2-beta
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: VirtualList.Maui, 0.0.2-beta"
#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.
// Install VirtualList.Maui as a Cake Addin #addin nuget:?package=VirtualList.Maui&version=0.0.2-beta&prerelease // Install VirtualList.Maui as a Cake Tool #tool nuget:?package=VirtualList.Maui&version=0.0.2-beta&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
VirtualList.Maui
The .NET7 & .NET8 library for create not-native VirtualList (CollectionView). This allows you to avoid different errors on different platforms. VirtualList will (try to) behave the same and predictably across platforms.
Installation
Use extension method .UseButtonSam()
in static method MauiProgram.CreateMauiApp()
Example
public static class MauiProgram
{
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp<App>()
.UseVirtualListMaui()
...
}
}
XAML Sample
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:list="clr-namespace:VirtualList.Maui;assembly=VirtualList.Maui"
...>
<list:VirtualList ItemsSource="{Binding Items}">
<list:VirtualList.ItemTemplate>
<DataTemplate>
<Label Text="{Binding .}"/>
</DataTemplate>
</list:VirtualList.ItemTemplate>
</list:VirtualList>
</ContentPage>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0-android34.0 is compatible. net8.0-ios17.2 is compatible. net8.0-maccatalyst17.2 is compatible. net8.0-windows10.0.19041 is compatible. net9.0-android was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0-android34.0
- Microsoft.Maui.Controls (>= 8.0.7)
- Microsoft.Maui.Controls.Compatibility (>= 8.0.7)
-
net8.0-ios17.2
- Microsoft.Maui.Controls (>= 8.0.7)
- Microsoft.Maui.Controls.Compatibility (>= 8.0.7)
-
net8.0-maccatalyst17.2
- Microsoft.Maui.Controls (>= 8.0.7)
- Microsoft.Maui.Controls.Compatibility (>= 8.0.7)
-
net8.0-windows10.0.19041
- Microsoft.Maui.Controls (>= 8.0.7)
- Microsoft.Maui.Controls.Compatibility (>= 8.0.7)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.0.2-beta | 72 | 6/8/2024 |
0.0.1-beta | 73 | 6/2/2024 |