D
David Ortinau
Guest
Today, Syncfusion announced their dedication as contributors to .NET MAUI and released the Syncfusion Toolkit for .NET MAUI, a set of free, open-source controls for .NET MAUI! Syncfusion is a leader in UI controls and components and have some impressive controls for .NET. Today they made 14 of these UI controls freely available for .NET MAUI developers. These controls are available in the syncfusion/maui-toolkit repository on GitHub as well as a NuGet package Syncfusion.Maui.Toolkit which you can use in your .NET MAUI projects today.
To get started now with these controls, add the NuGet package to your project.
You can then initialize the controls in the project
Then include the namespace in any XAML file to access any of the controls.
For more details on how to use these controls, plus more examples, visit the new Syncfusion Toolkit for .NET MAUI documentation.
We understand from talking to many customers that popular open-source controls and packages like the MVVM Community Toolkit and .NET MAUI Community Toolkit are essential to building your apps. So in .NET 9, we are collaborating with Syncfusion on a new project template that includes Syncfusion Toolkit for .NET MAUI as well as these incredibly popular Community Toolkits. This app showcases recommended practices using the MVVM pattern, database access with SQLite, navigation, view refresh, and many other common patterns your apps need to employ.
The new project template will be available with our .NET 9 release, and you can take a look at it now in the dotnet/maui repository as it makes its way through our review process. We look forward to your feedback!
Syncfusion is also investing their expertise as control builders into .NET MAUI by openly contributing on issues and submitting PRs in the dotnet/maui repository on GitHub to improve the quality of .NET MAUI.
Syncfusion believes in the future of .NET MAUI as the modern cross-platform client solution for .NET developers and is committed to its health and growth. Since their team of experienced engineers started contributing this summer, you might have noticed they have resolved over 75 product issues, and they are just getting started.
We are thrilled to welcome Syncfusion as active contributors to the .NET MAUI open-source project. Their commitment to the success of .NET MAUI is incredible and their expertise in this space invaluable. Going forward, you will see Syncfusion become more active contributors with us and release even more controls.
As the lead maintainers we at Microsoft are excited to turn around issues quicker and deliver faster on our product roadmap.
We welcome all members of the .NET ecosystem to contribute to .NET. It benefits us all and fosters a thriving developer community. We’re ready to pick up the pace of innovation of .NET MAUI. We can’t wait to show you what else we have in store for you with .NET 9 at .NET Conf 2024 this November 12-14.
We’re extremely excited about what we can accomplish with you, Syncfusion, and the entire community.
The post .NET MAUI Welcomes Syncfusion Open-source Contributions appeared first on .NET Blog.
Continue reading...
To get started now with these controls, add the NuGet package to your project.
<PackageReference Include="Syncfusion.Maui.Toolkit" Version="1.0.1" />
You can then initialize the controls in the project
MauiProgram
.
Code:
public static class MauiProgram
{
public static MauiApp CreateMauiApp()
{
return MauiApp
.CreateBuilder()
.UseMauiApp<App>()
.ConfigureSyncfusionToolkit()
.Build();
}
}
Then include the namespace in any XAML file to access any of the controls.
Code:
<?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:syncfusion="http://schemas.syncfusion.com/maui/toolkit">
<syncfusion:Shimmer>
...
</syncfusion:Shimmer>
For more details on how to use these controls, plus more examples, visit the new Syncfusion Toolkit for .NET MAUI documentation.
We understand from talking to many customers that popular open-source controls and packages like the MVVM Community Toolkit and .NET MAUI Community Toolkit are essential to building your apps. So in .NET 9, we are collaborating with Syncfusion on a new project template that includes Syncfusion Toolkit for .NET MAUI as well as these incredibly popular Community Toolkits. This app showcases recommended practices using the MVVM pattern, database access with SQLite, navigation, view refresh, and many other common patterns your apps need to employ.
The new project template will be available with our .NET 9 release, and you can take a look at it now in the dotnet/maui repository as it makes its way through our review process. We look forward to your feedback!
Syncfusion is also investing their expertise as control builders into .NET MAUI by openly contributing on issues and submitting PRs in the dotnet/maui repository on GitHub to improve the quality of .NET MAUI.
Syncfusion believes in the future of .NET MAUI as the modern cross-platform client solution for .NET developers and is committed to its health and growth. Since their team of experienced engineers started contributing this summer, you might have noticed they have resolved over 75 product issues, and they are just getting started.
We are thrilled to welcome Syncfusion as active contributors to the .NET MAUI open-source project. Their commitment to the success of .NET MAUI is incredible and their expertise in this space invaluable. Going forward, you will see Syncfusion become more active contributors with us and release even more controls.
As the lead maintainers we at Microsoft are excited to turn around issues quicker and deliver faster on our product roadmap.
We welcome all members of the .NET ecosystem to contribute to .NET. It benefits us all and fosters a thriving developer community. We’re ready to pick up the pace of innovation of .NET MAUI. We can’t wait to show you what else we have in store for you with .NET 9 at .NET Conf 2024 this November 12-14.
We’re extremely excited about what we can accomplish with you, Syncfusion, and the entire community.
The post .NET MAUI Welcomes Syncfusion Open-source Contributions appeared first on .NET Blog.
Continue reading...