Victor's Feed
- Deprecation of ListView in .NET MAUI
Microsoft announced ListView's deprecation in .NET 10, encouraging developers to migrate to CollectionView for better performance and flexibility. This guide provides step-by-step migration patterns including template conversion, selection handling, and SwipeView alternatives.
Read more - Delete bin and obj Folders in .NET MAUI
A Visual Studio Code extension streamlines cleaning build artifacts in .NET MAUI projects by providing a right-click context menu option to delete bin and obj folders. This simple tool saves time resolving mysterious build issues and cache problems.
Read more - Align the Button Text in .NET MAUI
Platform-specific button text alignment in .NET MAUI requires custom handlers leveraging native iOS and Android controls. This guide demonstrates creating reusable handlers for precise text positioning across platforms.
Read more - Stay Ahead of the Curve: Embrace .NET MAUI for .NET 9
.NET MAUI for .NET 9 brings performance improvements, new controls like HybridWebView, and enhanced platform features. Despite being an STS release, the frequent update cycle of mobile development makes upgrading practical and beneficial.
Read more - Loading State for Images in .NET MAUI
Control reference bindings in .NET MAUI enable elegant loading indicators for images across all platforms. By binding to the Image control's IsLoading property, developers can provide visual feedback during image fetching operations.
Read more - Solving .NET MAUI Issues on macOS Sequoia with Visual Studio Code and XCode 16
macOS Sequoia and XCode 16 initially broke .NET MAUI compatibility, requiring workarounds until official support arrived. This guide documents solutions including downgrading XCode, managing provisioning profiles, and disabling XAML Hot Reload.
Read more - Mastering Error Insights in .NET MAUI: Sentry vs. Firebase Crashlytics
Sentry outperforms Firebase Crashlytics for .NET MAUI error monitoring by providing full .NET stack traces, custom contexts, breadcrumbs, and better debugging insights. The comparison guides developers in choosing effective error tracking solutions.
Read more - ObservableRangeCollection in .NET MAUI
ObservableRangeCollection extends standard collections with automatic change notifications, ideal for .NET MAUI UI updates. This extension provides performance benefits over standard ObservableCollection for bulk operations while maintaining real-time binding.
Read more