.NET MAUI 10.0.80
.NET MAUI 10.0.80 has shipped — Microsoft's cross-platform UI framework received its latest servicing release on June 24, 2026, packing over 112 commits with significant improvements across quality, performance, and developer experience. This release covers fixes and enhancements for all supported platforms: Android, iOS, macOS, Windows, and Tizen.
What's New in .NET MAUI 10.0.80
.NET MAUI 10.0.80 continues the framework's trajectory as the primary .NET cross-platform UI toolkit, with this release focusing heavily on squashing long-standing bugs and improving control reliability. The release spans improvements across Button, CollectionView, CarouselView, Entry, Editor, ListView, and several other core controls.
Button and VisualState Fixes
Button controls on Android and iOS now correctly restore VisualState properties when leaving custom states. A bug that caused VisualStates to stop working after state transitions has been fixed, ensuring that buttons properly reflect their enabled, disabled, and pressed states in all scenarios.
CollectionView and CarouselView Improvements
CollectionView grid spacing updates now correctly apply to the first row and column — a fix for a spacing issue that only affected the first visual column. CarouselView received three significant fixes: cascading PositionChanged and CurrentItemChanged events on collection updates now behave correctly on Windows; ItemSpacing is properly applied on Windows (previously ignored); and general reliability improvements for data-bound carousels have been implemented.
Entry, Editor, and Picker Enhancements
The release includes fixes for Entry and Editor controls on various platforms, addressing cursor positioning, text selection behavior, and input handling edge cases. Picker controls now render more consistently across platforms, with particular attention to the Windows implementation where dropdown behavior was refined.
ListView and RefreshView Updates
ListView received a fix for item template recycling that could cause visual artifacts during rapid scrolling. RefreshView's pull-to-refresh interaction has been improved for smoother animations and better cancellation behavior when the user releases the pull gesture mid-refresh.
Platform-Specific Fixes
On Android, keyboard interaction with Entry fields in CollectionView cells has been improved. On iOS, a layout cycle issue affecting nested ScrollViews has been resolved. macOS saw improvements to window sizing and menu bar integration. Windows received several accessibility fixes and improved high-DPI rendering for custom controls.
Developer Experience and CI Improvements
This release also introduces deep UI test execution in the Copilot PR review pipeline, enabling automated UI test verification during code review. The CI pipeline has been refactored with better environment variable scoping per task, reducing false failures in the build system. These infrastructure improvements mean faster, more reliable releases going forward.
How to Update
To upgrade to .NET MAUI 10.0.80, update your project's .NET MAUI package reference:
dotnet workload update maui
dotnet update package Microsoft.Maui.Controls --version 10.0.80
.NET MAUI 10.0.80 is available via NuGet and requires the latest .NET 10 SDK. Run dotnet workload update to ensure you have the latest MAUI workload installed, then rebuild your application to pick up the changes.