NET MAUI 2026: AI-Powered Insights into Cross-Platform App Development
Sign In

NET MAUI 2026: AI-Powered Insights into Cross-Platform App Development

Discover the latest in .NET MAUI, Microsoft's leading cross-platform framework for building native apps on Windows, macOS, iOS, and Android. Analyze real-time updates, performance improvements, and migration trends with AI-powered insights to stay ahead in modern software development.

1/151

NET MAUI 2026: AI-Powered Insights into Cross-Platform App Development

54 min read10 articles

Getting Started with .NET MAUI in 2026: A Beginner's Guide to Cross-Platform App Development

Introduction: Why .NET MAUI Is the Future of Cross-Platform Development

In 2026, .NET Multi-platform App UI (.NET MAUI) stands as the cornerstone framework for building native apps across Windows, macOS, iOS, and Android with a single C# codebase. Microsoft officially released .NET MAUI 8.2 in February 2026, marking a significant milestone in cross-platform development. With over 350,000 active developers and a growing adoption rate — 38% of new C# apps in early 2026 — it's clear that .NET MAUI has become the preferred choice for both enterprise and consumer applications.

If you're new to this framework, you're in the right place. This guide walks you through the essentials: setting up your environment, understanding the architecture, and creating your first cross-platform app. By the end, you'll have a solid foundation to start developing with the latest tools and features available in 2026.

Setting Up Your Development Environment

Prerequisites and Tools

To get started with .NET MAUI, ensure your development environment aligns with the latest requirements:

  • Operating System: Windows 11 or macOS Monterey or later.
  • IDE: Visual Studio 2023 (version 17.5 or newer) with the latest updates supporting .NET MAUI 8.2.
  • SDKs and Tools: .NET 11 SDK (Preview 1 or later), latest .NET MAUI workload, and optional tools like Git for version control.

Microsoft has streamlined the setup process. Install Visual Studio with the "Mobile development with .NET" workload, which now includes enhanced support for Hot Reload, Blazor Hybrid apps, and improved performance on ARM devices.

Installing and Configuring

Once your IDE is ready, install the latest .NET SDK and enable the .NET MAUI workload through the Visual Studio Installer. After installation, create a new project by selecting the "MAUI App" template. This provides a ready-made scaffold with all necessary configurations for cross-platform development.

Ensure your environment has the latest updates, especially for features like Hot Reload and dependency injection, which have seen significant improvements in 2026. Regularly check the .NET MAUI release notes to stay informed about new capabilities and bug fixes.

Understanding the Architecture of .NET MAUI

Unified Project Structure

One of the key advancements in .NET MAUI over Xamarin.Forms is its simplified, unified project structure. Instead of separate projects for each platform, you now work within a single project that targets multiple platforms. The project automatically manages platform-specific code via partial classes and conditional compilation, reducing complexity.

This structure promotes faster development cycles and easier maintenance. For example, platform-specific code can be isolated within specific folders, while shared UI and logic reside in core files.

Core Components and Workflow

.NET MAUI leverages several core components:

  • UI Layer: Built with XAML, enabling declarative UI design with modern controls and layouts.
  • ViewModels: Implements MVVM pattern for separation of concerns, improving testability and maintainability.
  • Dependency Injection: Simplified and integrated, allowing you to register services and manage dependencies effortlessly.
  • Native Rendering: Uses native controls to ensure high performance and consistent look and feel across platforms.

The workflow involves designing your UI with XAML, binding data via ViewModels, and managing services through dependency injection. Hot Reload supports rapid UI iteration, making the development process more efficient than ever.

Creating Your First Cross-Platform App

Step-by-Step Guide to Building a Simple App

Let's walk through creating a simple "Hello World" app that runs on all four target platforms.

  1. Create a new project: Open Visual Studio, select "Create a new project," then choose "MAUI App." Name it "MyFirstMauiApp."
  2. Design the UI: In the MainPage.xaml file, replace the default content with a label:
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="MyFirstMauiApp.MainPage">
    <StackLayout VerticalOptions="Center" HorizontalOptions="Center">
        <Label Text="Hello, .NET MAUI 2026!" FontSize="24"/>
    </StackLayout>
</ContentPage>
  1. Run the app: Select the target platform (Windows, macOS, iOS, or Android) from the debug dropdown and hit "Start."
  2. See your app in action: The label displays your greeting across all platforms, thanks to native rendering and shared code.

This straightforward example introduces the core concepts—design, build, and deploy—applying equally to more complex projects.

Leveraging Advanced Features in 2026

Blazor Hybrid Integration

One of the standout features in 2026 is the seamless integration of Blazor Hybrid apps. This allows you to embed web UI components directly within your native app, combining web flexibility with native performance. It's ideal for enterprise apps that need web-based dashboards or dynamic content alongside native features.

Performance Optimization

.NET MAUI's latest version emphasizes performance, especially on ARM-based devices. Use the new performance profiling tools in Visual Studio, follow best practices like minimizing platform-specific code, and leverage the latest rendering engine improvements to ensure your apps are fast and responsive.

Dependency Injection and Modular Architecture

Enhanced dependency injection simplifies managing services and modules, making your app more testable and maintainable. Use the new simplified APIs to inject services like data repositories, network clients, or custom controls effortlessly.

Migrating from Xamarin.Forms to .NET MAUI

Many existing apps are migrating to .NET MAUI to take advantage of its performance and modern architecture. The migration process involves creating a new .NET MAUI project, porting your UI and logic, and testing across platforms. Microsoft provides migration guides and tools to streamline this transition, which is crucial given the rapid adoption rate of .NET MAUI in 2026.

Best Practices for Building Maintainable Apps

  • Follow the MVVM pattern to separate UI from business logic.
  • Use dependency injection to manage services and improve testability.
  • Regularly update dependencies and stay aligned with the latest .NET MAUI release notes.
  • Leverage Hot Reload for rapid UI development and debugging.
  • Test your app on real devices to identify performance bottlenecks and platform-specific issues.
  • Participate in the open-source community for new libraries, controls, and shared solutions.

Conclusion: Embrace the Future of Cross-Platform Development

As of 2026, .NET MAUI has firmly established itself as the leading framework for cross-platform app development. Its modern architecture, improved performance, and integration with web technologies like Blazor make it a versatile choice for developers aiming to reach multiple devices seamlessly. Whether you're migrating an existing app or starting fresh, mastering .NET MAUI will position you at the forefront of cross-platform innovation in 2026 and beyond.

By following this beginner's guide, you now have the foundational knowledge to set up your environment, understand the architecture, and build your first app. Keep exploring the latest features, participate in community forums, and stay updated with Microsoft's evolving tools. The future of cross-platform app development is bright with .NET MAUI leading the way!

Comparing .NET MAUI and Xamarin.Forms: Transition Strategies for Enterprise Developers

Introduction: The Shift to .NET MAUI in 2026

By 2026, the landscape of cross-platform app development has shifted significantly, with .NET MAUI emerging as the definitive framework supported by Microsoft. Launched officially in February 2026 with version 8.2, .NET MAUI (Multi-platform App UI) offers a streamlined, high-performance environment for building native applications across Windows, macOS, iOS, and Android. Its predecessor, Xamarin.Forms, now stands deprecated as of mid-2025, prompting many enterprise developers to consider migration strategies. This article explores the core differences between .NET MAUI and Xamarin.Forms, providing practical guidance for transitioning legacy enterprise apps seamlessly in 2026.

Understanding the Core Differences

Architecture and Project Structure

One of the most noticeable distinctions between the frameworks lies in their architecture. Xamarin.Forms required developers to maintain separate projects or shared codebases with platform-specific folders, often leading to complex solutions. In contrast, .NET MAUI introduces a unified project structure, consolidating platform-specific code into a single project. This simplification reduces maintenance overhead and accelerates development cycles. For example, with MAUI’s multi-targeting capabilities, you can target Windows, macOS, iOS, and Android from one project, leveraging conditional code only when necessary. This architecture aligns well with enterprise needs for scalable, maintainable solutions.

Performance and UI Rendering

As of March 2026, .NET MAUI boasts improved performance metrics, especially on ARM-based devices, thanks to optimized runtime engines and rendering pipelines introduced in recent updates (like version 8.2). It offers native UI components that render more efficiently, enabling apps to perform better on lower-end devices compared to Xamarin.Forms, which sometimes suffered performance bottlenecks due to its abstraction layers. For enterprise applications, this means smoother user experiences and reduced hardware requirements, which can translate into cost savings and higher user satisfaction.

Development Experience and Modern Features

.NET MAUI enhances the developer experience with modern features such as improved Hot Reload for both XAML and C# code, enabling real-time UI updates. Its integration with Blazor Hybrid apps allows web developers to leverage familiar web technologies alongside native controls, fostering a versatile development environment. Moreover, the framework emphasizes dependency injection (DI), with a simplified model that promotes better modularity and testability—crucial for enterprise-grade applications. The latest version also supports advanced DevOps workflows, including seamless CI/CD pipeline integration, further streamlining deployment cycles.

Migration Strategies for Enterprise Apps

Assessing Your Current Xamarin.Forms App

Before initiating migration, conduct a thorough assessment of your existing Xamarin.Forms application. Identify platform-specific code, third-party controls, and dependencies that may lack support or need refactoring. Use Microsoft’s migration tools and analyzers, which highlight incompatible APIs and suggest alternatives. For large legacy apps, break down the migration into manageable phases—starting with UI components, then moving to business logic, and finally platform-specific features. This approach minimizes downtime and allows incremental validation.

Preparing Your Development Environment

Ensure your development tools are up-to-date. Visual Studio 2023, optimized for .NET MAUI, is essential, along with the latest SDKs and runtime updates. Familiarize your team with new features like Hot Reload, dependency injection, and Blazor Hybrid integration through official tutorials and hands-on labs. Investing time in training reduces resistance and accelerates adoption. Many enterprise teams have reported that initial learning curves flatten quickly once core concepts are understood, especially with the abundance of recent tutorials and community resources.

Building a Migration Roadmap

Create a detailed migration plan that includes timelines, resource allocation, and testing milestones. Prioritize critical features and high-usage modules for early migration. Use the new .NET MAUI project templates to scaffold your app and begin porting UI components. Leverage migration guides from Microsoft, which outline best practices for converting XAML layouts, data binding, and platform-specific code. For apps heavily reliant on third-party libraries, check for updated MAUI-compatible versions or plan for custom replacements.

Testing and Validation

Thorough testing is crucial. Cross-platform apps must perform reliably across all devices and OS versions. Use automated testing frameworks integrated into Visual Studio, coupled with real-device testing to identify performance bottlenecks or UI inconsistencies. Pay special attention to platform-specific features, such as sensors or native controls, ensuring they function correctly after migration. Continuous feedback from beta testers can help refine the app before full deployment.

Key Benefits of Transitioning to .NET MAUI

  • Unified Development Environment: One project structure reduces complexity and accelerates onboarding for new developers.
  • Enhanced Performance: Optimizations in version 8.2 deliver faster load times and smoother UI interactions.
  • Modern UI and Developer Tools: Hot Reload, Blazor Hybrid, and improved DI support enhance productivity and app quality.
  • Better Integration with Cloud and DevOps: Streamlined CI/CD pipelines facilitate faster releases and updates.
  • Growing Ecosystem and Community Support: Over 350,000 active developers and expanding third-party library support make troubleshooting easier.

Challenges and How to Overcome Them

Despite its advantages, migrating to .NET MAUI isn't without hurdles. Some third-party controls may lack full support, requiring custom development or fallback solutions. Large legacy apps with complex platform-specific code might need extensive refactoring. To mitigate these risks, adopt a phased migration approach, prioritize core features, and leverage Microsoft's migration tools and community resources. Additionally, ongoing training and stakeholder engagement are vital to ensure smooth adoption.

Conclusion: Embracing the Future of Cross-Platform Development

As of 2026, .NET MAUI has firmly established itself as the framework of choice for enterprise cross-platform development. Its improved architecture, performance, and modern features make it a compelling upgrade from Xamarin.Forms. Transitioning your legacy apps to .NET MAUI not only future-proofs your solutions but also opens doors to innovative development paradigms like Blazor Hybrid and enhanced Cloud integration. By carefully assessing your existing applications, planning a structured migration, and leveraging the latest tools and community support, enterprise developers can harness the full potential of .NET MAUI. The ongoing evolution of the framework promises continued performance gains, richer features, and broader device support—solidifying its role as a cornerstone of modern app development in 2026 and beyond.

Optimizing Performance in .NET MAUI Apps: Tips and Best Practices for 2026

Understanding the Performance Landscape in .NET MAUI 2026

As of 2026, .NET MAUI (Multi-platform App UI) has firmly established itself as the leading cross-platform framework for building high-performance, native applications across Windows, macOS, iOS, and Android. The latest release, .NET MAUI 8.2, has brought significant improvements in speed, responsiveness, and overall efficiency, especially on ARM-based devices, which now dominate the mobile and desktop markets.

With over 38% of new cross-platform C# projects adopting .NET MAUI in early 2026, it's clear that developers are prioritizing performance alongside rich UI capabilities. To stay ahead, developers must understand the nuanced strategies for optimizing performance at every stage of app development – from architecture and code design to deployment and runtime management.

Core Strategies for Performance Optimization in .NET MAUI

1. Leverage the Latest Framework Features

Microsoft continuously refines .NET MAUI, with recent updates emphasizing performance. The improved Hot Reload capabilities in version 8.2 allow developers to see UI changes instantly, reducing development iteration times and minimizing runtime errors. Similarly, the new dependency injection model simplifies service registration, leading to faster startup times.

Adopting these features early ensures your app benefits from the latest runtime efficiencies, enabling smoother UI rendering and faster data processing. For example, utilizing built-in dependency injection reduces startup overhead and streamlines service resolution, which is critical for enterprise-grade apps with complex dependencies.

2. Optimize UI Rendering and Data Binding

UI responsiveness is paramount, especially for mobile users on ARM devices. To maximize performance, use lightweight UI components and avoid overly nested views that can slow rendering. XAML markup should be optimized with minimal bindings, and data binding expressions should be simplified where possible.

In 2026, .NET MAUI supports compiled bindings, which convert data binding expressions into direct code at compile time, significantly improving runtime performance. Implementing these bindings reduces unnecessary reflection and garbage collection, resulting in snappier UI interactions.

Furthermore, leverage the new UI virtualization techniques that render only visible elements in list views or collection controls, reducing memory footprint and improving scroll performance.

3. Manage Resources Effectively

Efficient resource management is critical for performance, especially on constrained devices. Use image assets optimized for each platform and resolution. The latest version introduces better support for vector graphics, which are resolution-independent and lightweight – ideal for high-DPI screens.

Additionally, implement intelligent caching strategies. For example, cache remote data and images locally, and only fetch updates when necessary. This reduces network load, accelerates app startup, and improves perceived responsiveness.

On the code side, dispose of unused objects promptly, especially those tied to native resources or large collections, to prevent memory leaks and reduce garbage collection pauses.

Advanced Techniques for Peak Performance

4. Use Native and Platform-Specific Code Judiciously

While .NET MAUI's goal is cross-platform uniformity, some performance-critical features may benefit from native code. In 2026, the framework's native interop capabilities are more streamlined, allowing developers to invoke platform-specific APIs directly with minimal overhead.

For instance, heavy image processing or real-time data streaming can be optimized by writing platform-specific code in Swift, Kotlin, or C++ and invoking it via interop. This approach ensures the most efficient use of hardware resources while maintaining a common codebase.

However, balance is key: only optimize where necessary to avoid complicating maintenance and future migrations.

5. Profile and Benchmark Regularly

Consistent profiling is vital to identify bottlenecks. Use Visual Studio's integrated profiling tools to monitor CPU, memory, and GPU usage during development. Microsoft’s latest tools now offer real-time insights with minimal performance impact, making it easier to catch issues early.

Benchmark across devices, especially on ARM architectures prevalent in 2026, to understand how your app performs under real-world conditions. Focus on startup time, scroll smoothness, and responsiveness during user interactions.

Implement automated performance tests as part of your CI/CD pipeline, ensuring that new code does not regress existing performance standards.

Best Practices for Maintaining High Performance During Development

1. Follow Modular and Lazy Loading Patterns

Design your app with modular architecture, loading only essential components at startup. Use lazy loading for non-critical views or features, deferring their initialization until needed. This approach reduces initial load times and memory consumption.

For example, load heavy modules asynchronously or in the background, ensuring the main UI remains responsive and quick to display.

2. Adopt Asynchronous Programming Paradigms

Asynchronous code is essential for maintaining UI responsiveness. Use async/await extensively for I/O operations, data fetching, and long-running tasks. This prevents UI freezing and provides a smoother user experience, especially on mobile devices with limited CPU resources.

In 2026, .NET MAUI’s integration with the latest C# features enhances async programming, allowing more readable and efficient code that scales well under load.

3. Optimize Build and Deployment Pipelines

Efficient CI/CD pipelines contribute to better app performance. Use the latest MSBuild optimizations and incremental builds to reduce compilation times. Automate performance testing and code analysis to catch regressions early.

Leverage Microsoft's enhanced DevOps tools for streamlined deployment, ensuring users receive optimized binaries with minimal delay, improving update cycle times.

Conclusion: Embracing Continuous Performance Improvement

In 2026, .NET MAUI stands as a mature, high-performance framework capable of delivering fast, responsive, and efficient cross-platform apps. By leveraging the latest features, optimizing UI and resources, employing native interop judiciously, and maintaining vigilant profiling, developers can maximize app performance across all devices.

Staying ahead in the competitive app landscape means continuously refining your approach, adopting new best practices, and contributing to the vibrant .NET MAUI community. With these strategies, your applications will not only meet user expectations but set new standards for excellence in cross-platform development.

Leveraging AI and Machine Learning in .NET MAUI: Building Smarter Cross-Platform Apps

Introduction: The Rise of AI-Enabled Cross-Platform Development

As of 2026, .NET MAUI has solidified its position as the premier framework for building cross-platform applications. With over 350,000 active developers and a steady increase in adoption—over 38% of new C# apps in early 2026—the framework continues to evolve rapidly. One of the most compelling trends shaping the future of .NET MAUI is its integration with artificial intelligence (AI) and machine learning (ML). These technologies empower developers to create smarter, more responsive, and personalized applications that can adapt to user needs in real time.

In this article, we'll explore how to leverage AI and ML within your .NET MAUI projects, enabling you to build innovative apps that stand out in today's competitive landscape. From integrating pre-trained models to developing custom AI solutions, this guide provides practical insights and actionable strategies for harnessing AI/ML in your cross-platform development journey.

Understanding AI and ML in the Context of .NET MAUI

What is AI and Machine Learning?

Artificial Intelligence (AI) refers to the simulation of human intelligence processes by machines, particularly computer systems. Machine Learning (ML), a subset of AI, focuses on algorithms that enable computers to learn from and make decisions based on data. By incorporating these technologies, apps can perform tasks such as image recognition, natural language processing, recommendation systems, and predictive analytics.

The Significance for Cross-Platform Apps

For .NET MAUI developers, integrating AI/ML offers a pathway to elevate app functionality. Imagine an app that personalizes content based on user behavior, provides voice-controlled commands, or predicts user needs before they occur. Since .NET MAUI supports native performance on Windows, macOS, iOS, and Android, AI models can run locally for low latency or leverage cloud services for complex processing—offering flexibility and scalability.

Integrating AI and ML into Your .NET MAUI Apps

Using Pre-Trained AI Models with ONNX and ML.NET

One straightforward way to add AI capabilities is by utilizing pre-trained models. The Open Neural Network Exchange (ONNX) format has become a standard for sharing machine learning models across platforms. Microsoft provides ONNX Runtime, which integrates seamlessly with .NET applications, including .NET MAUI.

For example, you can embed an image classification model into your app to recognize objects locally, enhancing privacy and reducing latency. With ML.NET, Microsoft's open-source ML framework, you can also train custom models or use existing ones, all within the familiar C# environment.

  • Example: Implement an object detection feature in a shopping app that identifies products via the device camera.
  • Benefit: Real-time processing without relying solely on cloud services, ensuring user privacy and faster responses.

Leveraging Cloud AI Services

For more complex tasks such as natural language understanding or large-scale data analysis, integrating cloud AI services is ideal. Microsoft Azure offers a suite of AI APIs—including Azure Cognitive Services—that can be easily consumed within your .NET MAUI app.

Suppose you're building a customer support app; you can incorporate Azure's Language Understanding (LUIS) to interpret user queries or sentiment analysis APIs to gauge customer satisfaction. These services are accessible via REST APIs, making integration straightforward within your C# codebase.

  • Tip: Use dependency injection to manage service clients efficiently, aligning with .NET MAUI's latest dependency injection enhancements.

Building Custom AI Models

For specialized use cases, developing custom ML models tailored to your domain can provide a competitive edge. With tools like ML.NET and Azure Machine Learning, you can train, evaluate, and deploy models directly from your development environment. Once trained, models can be exported to ONNX format or hosted as web services for scalable deployment.

For example, a fitness app could analyze user activity data to predict injury risks or suggest personalized workout plans. These intelligent features foster user engagement and retention.

Practical Strategies for Developing Smarter .NET MAUI Apps

Optimize for Performance and Privacy

Running AI models locally on devices is essential for performance-critical applications and user privacy. With .NET MAUI's improved support for ARM-based processors, especially on mobile devices, you can embed lightweight models directly into the app. Nonetheless, heavy processing tasks or large models are better suited for cloud computation, leveraging Azure's scalable infrastructure.

Ensure your app manages data securely, adhering to privacy regulations, by processing sensitive data on-device whenever possible and only transmitting anonymized data to the cloud.

Enhance User Experience with AI-Powered Features

Integrate intelligent features such as voice commands, personalized content feeds, or predictive notifications. For instance, using speech recognition APIs, your app can enable hands-free operation, boosting accessibility and convenience.

Moreover, employing ML-based recommendations can significantly improve engagement. An e-commerce app built with .NET MAUI can suggest products based on browsing history, enhancing sales and user satisfaction.

Automate and Simplify Development with AI Tools

Take advantage of AI-powered development tools like Visual Studio IntelliCode, which offers AI-assisted code completions, reducing coding errors and speeding up development. Additionally, AI-driven testing tools can simulate user interactions, identify bugs, and optimize performance across platforms.

By automating routine tasks, developers can focus more on innovation, ensuring high-quality, maintainable applications.

Future Outlook: AI and ML Trends in .NET MAUI Development

Looking ahead, AI integration will become increasingly seamless within .NET MAUI. Microsoft is investing heavily in expanding the framework's open-source ecosystem, with new libraries and controls tailored for AI/ML features. As of early 2026, the community is actively developing components that simplify tasks like image recognition, chatbots, and data analytics.

Furthermore, advancements in edge AI—running models directly on devices—will enable more autonomous, responsive apps. With Microsoft's ongoing enhancements to performance and developer tooling, building intelligent cross-platform apps will become more accessible and powerful.

Conclusion: Building the Next Generation of Intelligent Cross-Platform Apps

Incorporating AI and machine learning into your .NET MAUI projects unlocks a new realm of possibilities. From embedding lightweight models for real-time insights to leveraging cloud services for complex processing, developers can craft smarter, more personalized applications that resonate with users across all devices. As the framework continues to mature in 2026, embracing these technologies will be key to staying competitive and innovative in cross-platform app development.

By following best practices—optimizing performance, ensuring privacy, and leveraging the rich AI ecosystem—you can build resilient, intelligent apps that not only meet but exceed user expectations. The future of cross-platform development is undeniably AI-powered, and .NET MAUI stands at the forefront of this exciting evolution.

The Future of Cross-Platform Development: Trends and Predictions for .NET MAUI in 2026 and Beyond

Introduction: The Evolution of Cross-Platform Frameworks

Over the past decade, cross-platform development has transitioned from a niche approach to a mainstream strategy. Frameworks like Xamarin, Flutter, React Native, and now .NET MAUI have empowered developers to build apps that span multiple operating systems with a single codebase. As of March 2026, .NET MAUI stands out as the primary choice for enterprise and consumer apps alike, with Microsoft continuously refining its capabilities to meet the demands of modern development.

With the recent release of .NET MAUI 8.2 in February 2026, the framework has solidified its position, boasting improved performance, enhanced developer tools, and broader ecosystem support. But what does the future hold? How will .NET MAUI evolve to address emerging trends, technological shifts, and developer needs? Let's explore the key directions and predictions shaping its trajectory in the coming years.

Emerging Trends in .NET MAUI Development

1. Accelerated Migration from Xamarin.Forms and Enterprise Adoption

One of the most noticeable trends in 2026 is the rapid migration from Xamarin.Forms to .NET MAUI. Over 38% of new cross-platform C# applications in early 2026 are built with .NET MAUI, reflecting its maturity and enterprise readiness. Large organizations are increasingly migrating legacy Xamarin apps, leveraging .NET MAUI's simplified project structure and performance benefits.

This migration trend is driven by improved tooling, better support for dependency injection, and seamless integration with modern DevOps pipelines. As more organizations recognize the long-term advantages, the migration wave is expected to continue, making .NET MAUI the de facto standard for cross-platform enterprise app development.

2. Open Source and Community Contributions Fuel Innovation

The open-source nature of .NET MAUI has fostered a vibrant community of developers and third-party contributors. As of 2026, open-source libraries and custom controls are growing rapidly, covering UI components, platform-specific features, and performance enhancements.

This collaborative environment accelerates innovation, reduces development costs, and ensures the framework stays aligned with developer needs. Expect to see more community-driven projects, plugins, and extensions that enhance .NET MAUI's capabilities, making it more versatile and adaptable to niche requirements.

3. Focus on Performance and Mobile Optimization

.NET MAUI's latest version, 8.2, emphasizes performance, especially on ARM-based devices like Surface tablets and iPads. The framework's rendering engines and runtime are continually optimized for speed and responsiveness.

Predictions indicate ongoing efforts to reduce startup times, improve memory management, and leverage hardware acceleration. Performance improvements will be particularly critical as more apps demand real-time data processing, AR features, and high-fidelity UI on mobile devices.

4. Integration with Blazor Hybrid and Web Technologies

Blazor Hybrid integration is now a core feature, enabling developers to combine web and native UI components seamlessly. This approach offers a unified experience for web developers transitioning to native app development and allows for hybrid apps that leverage web technologies alongside native controls.

Moving forward, expect deeper integration with web standards, Progressive Web Apps (PWAs), and even emerging WebAssembly capabilities, blurring the lines between web and native apps further.

Predicted Features and Innovations for .NET MAUI Beyond 2026

1. Advanced AI and Machine Learning Integration

Artificial Intelligence and machine learning are set to become embedded into the core of .NET MAUI. With the rise of AI-powered features like real-time image processing, natural language understanding, and predictive analytics, developers will be able to embed intelligent capabilities directly into their cross-platform apps.

Microsoft is expected to release dedicated SDKs and tools that enable easy integration of Azure Cognitive Services and custom ML models, making AI features more accessible for developers without deep data science expertise.

2. Broader Support for Emerging Devices and Form Factors

As device diversity expands—think foldables, AR glasses, IoT devices—.NET MAUI will evolve to support these form factors natively. Enhanced input methods, adaptable UI components, and device-specific APIs will make cross-platform apps more versatile.

For example, apps might dynamically adjust layouts for foldable screens or incorporate AR features using dedicated hardware support, all within a unified development environment.

3. Improved Developer Experience with AI-Powered Tools

Microsoft's investments in AI will likely extend to development tools, offering intelligent code completion, automated refactoring, and predictive debugging. These AI-enhanced tools will streamline development workflows, reduce bugs, and facilitate rapid prototyping.

Imagine an AI assistant embedded within Visual Studio that suggests optimal UI patterns or identifies performance bottlenecks in real-time, significantly boosting productivity.

4. Enhanced Security and Compliance Features

Security remains paramount, especially for enterprise apps. Future versions of .NET MAUI will incorporate advanced security frameworks, including built-in encryption, biometric authentication, and compliance auditing tools.

This will simplify building secure apps that meet industry-specific regulations, especially in finance, healthcare, and government sectors.

Strategic Insights for Developers and Organizations

  • Migrate proactively: With Xamarin.Forms deprecated, early migration to .NET MAUI ensures compatibility and access to new features. Use migration tools and Microsoft guidance to streamline the process.
  • Leverage open-source: Engage with community libraries and contribute to open-source projects to accelerate innovation and tailor solutions to your needs.
  • Invest in performance optimization: Optimize app startup times, responsiveness, and memory management to provide seamless user experiences on all device types.
  • Embrace hybrid and web integrations: Use Blazor Hybrid to combine web and native UI, capitalizing on existing web development skills and expanding app capabilities.
  • Prepare for emerging devices: Keep an eye on device trends and plan UI adaptations that leverage new hardware features like AR, foldables, and IoT sensors.

Conclusion: The Road Ahead for .NET MAUI

Looking beyond 2026, .NET MAUI is poised to become even more integral to cross-platform app development, driven by advancements in AI, device support, and developer tooling. Its evolution reflects a broader industry shift towards unified, performant, and intelligent applications that can run seamlessly across a diverse hardware landscape.

For developers and organizations, staying ahead means embracing these trends, investing in migration and skill development, and actively participating in the vibrant .NET MAUI community. As Microsoft continues to innovate, .NET MAUI will remain a cornerstone framework—shaping the future of cross-platform development well into the next decade.

Deep Dive into .NET MAUI Dependency Injection: Simplifying Complex App Architectures

Introduction to Dependency Injection in .NET MAUI

.NET Multi-platform App UI (MAUI) has rapidly become the cornerstone of cross-platform app development in 2026. As developers strive to build scalable, maintainable, and testable applications across Windows, macOS, iOS, and Android, managing dependencies efficiently becomes crucial. Dependency Injection (DI) in .NET MAUI offers a structured approach to achieve this, enabling cleaner code, better separation of concerns, and easier testing.

With the latest release of .NET MAUI 8.2 in February 2026, Microsoft simplified the DI model even further, making it more accessible for developers of all skill levels. Understanding how to implement and optimize dependency injection is essential for leveraging the full power of .NET MAUI, especially as applications grow in complexity and size.

What is Dependency Injection and Why Use It in .NET MAUI?

Fundamentals of Dependency Injection

Dependency Injection is a design pattern that allows objects to receive their dependencies from an external source rather than creating them internally. Think of it like ordering a coffee: instead of making your own sugar or milk, you get them delivered to you. This approach decouples components, simplifying maintenance and testing.

In the context of .NET MAUI, DI helps manage services such as data repositories, API clients, or platform-specific functionalities. By injecting these dependencies, developers can write modular, testable code that adapts easily to changes or platform-specific requirements.

Benefits of DI in Complex App Architectures

  • Scalability: Easily add or replace services without affecting other parts of the app.
  • Maintainability: Clear separation of concerns simplifies debugging and updates.
  • Testability: Mock dependencies during unit testing, ensuring isolated and reliable tests.
  • Consistency: Uniform approach to managing dependencies across platforms.

As apps scale in features and complexity, dependency injection becomes indispensable, preventing code from becoming a tangled mess of tightly coupled components.

Implementing Dependency Injection in .NET MAUI

Built-in DI Support in .NET MAUI

.NET MAUI leverages the Microsoft.Extensions.DependencyInjection library, which is integrated into the framework’s startup process. The primary entry point for configuring services is the MauiProgram.cs file, where you set up your dependency container.

Here’s a basic example:


public static class MauiProgram
{
    public static MauiApp CreateMauiApp()
    {
        var builder = MauiApp.CreateBuilder();
        builder
            .UseMauiApp()
            .ConfigureFonts(fonts =>
            {
                fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
            });

        // Register services
        builder.Services.AddTransient();
        builder.Services.AddSingleton();

        return builder.Build();
    }
}

In this example, services are registered with different lifetimes—transient, singleton, and scoped—depending on the use case. This flexibility allows you to optimize resource management based on your app’s needs.

Injecting Dependencies into Views and ViewModels

In MVVM architecture, ViewModels are the primary recipients of injected dependencies. You can resolve services in the constructor of your ViewModel:


public class MainViewModel : BaseViewModel
{
    private readonly IDataRepository _dataRepository;

    public MainViewModel(IDataRepository dataRepository)
    {
        _dataRepository = dataRepository;
        // Use the repository as needed
    }
}

To instantiate ViewModels with DI, you can leverage the built-in service provider or use a ViewModel locator pattern. With the latest updates, .NET MAUI also supports constructor injection directly in XAML via the `x:DataType` property, simplifying data binding and dependency resolution.

Handling Platform-Specific Dependencies

Often, apps require platform-specific implementations, such as accessing device sensors or native APIs. DI facilitates this by registering different implementations based on the platform:


#if ANDROID
builder.Services.AddTransient();
#elif IOS
builder.Services.AddTransient();
#else
builder.Services.AddTransient();
#endif

This conditional registration ensures your app dynamically resolves the correct dependencies at runtime, streamlining cross-platform development.

Optimizing Dependency Injection for Performance and Scalability

Choosing the Right Service Lifetimes

Understanding service lifetimes—transient, singleton, and scoped—is vital for app performance. In .NET MAUI, singleton services are instantiated once per app lifecycle, ideal for shared resources like database contexts or network clients. Transient services are created anew each time they are requested, suitable for lightweight, stateless components.

For example, overusing singletons can lead to stale data or resource locking, while excessive transients might impact startup time. The latest MAUI updates encourage strategic use of these lifetimes, especially with the new dependency injection model introduced in 2026.

Lazy Initialization and Caching Strategies

To further optimize startup performance, consider lazy initialization of heavy services or caching frequently used data. Dependency injection can support this by registering lazy-loaded services or leveraging `IServiceProvider.GetRequiredService()` only when necessary.

Implementing caching mechanisms within singleton services or using memory-efficient data structures ensures your app remains responsive, even as complexity grows.

Integrating DI with Blazor Hybrid and Other Modern Features

With the rise of Blazor Hybrid in 2026, developers often combine web and native UI components. Dependency injection seamlessly integrates with Blazor components, allowing shared services across web and native layers. This approach reduces duplication, simplifies maintenance, and enhances consistency across the app.

For instance, shared API clients or authentication services can be registered once and used uniformly in both Blazor and native UI components, thanks to the DI container's flexibility.

Best Practices and Practical Takeaways

  • Plan your service lifetimes carefully: Use singleton for shared resources, transient for stateless components.
  • Leverage platform-specific registrations: Employ conditional compilation for platform-dependent services.
  • Mock dependencies during testing: Simplify unit testing by injecting mock services.
  • Keep dependencies up-to-date: Regularly review and update registered services to align with latest framework improvements.
  • Use constructor injection predominantly: It promotes clarity and enforces explicit dependencies.
  • Combine DI with MVVM: Inject services directly into ViewModels for cleaner code and easier testing.

Conclusion

Dependency Injection in .NET MAUI has evolved into a core pillar of modern app architecture, especially as applications become more complex and feature-rich in 2026. The latest enhancements in the framework simplify implementation, optimize performance, and support scalable development practices. By mastering DI, developers can build robust, maintainable, and testable cross-platform apps that leverage the full potential of the .NET ecosystem.

As the adoption rate of .NET MAUI continues to rise—over 38% of new cross-platform C# projects in 2025—understanding and applying effective dependency injection strategies will be essential for staying competitive and delivering high-quality applications across all major platforms.

Building Blazor Hybrid Apps with .NET MAUI: Combining Web and Native for Seamless User Experiences

Introduction: The Power of Hybrid Development in 2026

As of 2026, the landscape of cross-platform app development continues to evolve rapidly. Microsoft’s .NET MAUI (Multi-platform App UI) has solidified its position as the leading framework for building native applications across Windows, macOS, iOS, and Android using a unified C# codebase. With the latest release, .NET MAUI 8.2, Microsoft has enhanced performance, developer productivity, and integration flexibility, making it an ideal foundation for complex, enterprise-grade applications.

One of the most compelling features in this ecosystem is the ability to develop Blazor Hybrid apps that seamlessly blend web technologies with native capabilities. This approach allows developers to leverage familiar web development paradigms—such as HTML, CSS, and Razor components—while still accessing the full power of native device APIs. Such hybrid apps enable the creation of cohesive user experiences that feel both modern and native, across all supported platforms.

Understanding Blazor Hybrid in the Context of .NET MAUI

What is Blazor Hybrid?

Blazor Hybrid is a methodology that integrates Blazor, Microsoft’s web UI framework, with native app development via .NET MAUI. Traditionally, Blazor enabled developers to build interactive web applications using C# instead of JavaScript. Now, with Blazor Hybrid, these web components are embedded directly into native containers, allowing the web UI to coexist with native UI elements within a single application.

This hybrid approach unlocks multiple benefits: running web-based UI components directly within a native app, sharing code and UI logic across platforms, and utilizing existing web development skills. It’s especially valuable for enterprises aiming to migrate legacy web apps or deliver consistent experiences without rewriting everything from scratch.

Why Combine Web and Native?

Combining web and native in one app offers a strategic advantage. Web technologies allow rapid UI development, easy updating, and cross-platform consistency. Native APIs, on the other hand, provide access to device-specific features such as cameras, sensors, notifications, and more—capabilities often restricted or cumbersome in purely web-based apps.

For example, a retail app might display a dynamic product catalog built with Blazor components, while native code handles barcode scanning and push notifications. This synergy results in a seamless, high-performance user experience that leverages the strengths of both worlds.

Building a Blazor Hybrid App with .NET MAUI

Step 1: Setting Up Your Development Environment

Begin by installing the latest version of Visual Studio 2023, which fully supports .NET MAUI 8.2 and Blazor Hybrid development. Ensure you have the .NET 8 SDK installed, as it’s optimized for performance and compatibility. Microsoft’s official tutorials recommend enabling the mobile and desktop development workloads to access all necessary tools and templates.

Additionally, familiarize yourself with the updated .NET MAUI project templates that include options for Blazor Hybrid apps, making setup straightforward.

Step 2: Creating a Blazor Hybrid Project

Using Visual Studio, create a new .NET MAUI Blazor App template. This project type provides a predefined structure that combines a native shell with embedded Blazor WebView components. The WebView acts as a container for your Razor components, rendering web UI directly within the native app.

Once created, the project includes a MainPage.xaml that hosts the BlazorWebView control. This control loads your Razor components from local files or embedded resources, enabling interactive web UI within the native context.

Step 3: Designing Web UI with Razor Components

Develop your UI using Razor components (.razor files). These components are highly reusable and support data binding, event handling, and dependency injection. Microsoft’s latest .NET MAUI tutorials emphasize building modular components that can be shared across web, mobile, and desktop variants.

For instance, a product list component can be reused for mobile screens and desktop dashboards, maintaining consistency and reducing code duplication.

Step 4: Accessing Native APIs from Web Components

One of the key strengths of .NET MAUI Blazor Hybrid is the ability to invoke native APIs from your Razor components. This is achieved through JavaScript interop or by exposing native services via dependency injection.

For example, you could create a native service that accesses GPS data, then invoke it from your Blazor component to display real-time location updates. Microsoft has introduced enhanced dependency injection models in MAUI 8.2 that simplify registering and consuming native services across all platforms.

Step 5: Optimizing Performance and User Experience

Performance optimization is critical, especially for mobile applications. With the latest updates, .NET MAUI offers improved rendering engines on ARM devices and better Hot Reload support, allowing developers to see UI changes instantly without app restarts.

Efficient data binding, lazy loading of components, and minimizing cross-platform API calls are best practices to ensure smooth performance. Additionally, leveraging native controls where appropriate—such as native pickers or sliders—can enhance responsiveness and user satisfaction.

Practical Insights and Best Practices

  • Plan your architecture: Use MVVM pattern alongside dependency injection to keep code organized and testable.
  • Leverage existing web assets: Reuse Razor components and CSS styles across platforms for consistency and faster development cycles.
  • Prioritize native integration: Use native services for features like camera, location, or notifications to maximize app capabilities.
  • Test across devices: Regularly test on real hardware and emulators to catch platform-specific issues early.
  • Stay updated: Follow Microsoft's .NET MAUI release notes and community contributions to adopt new features and improvements promptly.

The Future of Blazor Hybrid Apps with .NET MAUI

As the ecosystem matures, Microsoft continues to enhance Blazor Hybrid capabilities, making it easier to develop complex, high-performance applications. The integration with AI-powered tools and improved DevOps pipelines in 2026 streamline the development-to-deployment process, further reducing time-to-market.

Additionally, open-source contributions are expanding the available third-party controls and libraries, addressing previous limitations and enabling richer UI experiences. The migration trend from Xamarin.Forms to .NET MAUI accelerates, with over 38% of new cross-platform C# projects adopting MAUI in early 2026.

Conclusion: Embracing the Hybrid Future

Building Blazor Hybrid apps with .NET MAUI in 2026 offers a compelling blend of web flexibility and native performance. This approach empowers developers to craft seamless, high-quality user experiences across all major devices and platforms, leveraging their existing web development skills while tapping into native device capabilities.

Whether upgrading legacy web apps, creating new enterprise solutions, or delivering consumer-facing products, harnessing the synergy of Blazor and .NET MAUI positions you at the forefront of cross-platform development. As Microsoft’s ecosystem continues to evolve, embracing hybrid development will remain essential for delivering innovative, scalable, and maintainable applications in the years ahead.

Open Source Contributions and Community Support for .NET MAUI: How to Get Involved in 2026

Understanding the Growing Ecosystem of .NET MAUI

By 2026, .NET MAUI has firmly established itself as the leading cross-platform framework for building native applications across Windows, macOS, iOS, and Android. The latest release, .NET MAUI 8.2, launched in February 2026, underscores the framework's commitment to continuous performance improvements, developer productivity, and enterprise readiness. With over 350,000 active developers worldwide and a 22% growth since 2025, the community's support plays a pivotal role in shaping its evolution.

One of the most compelling aspects of .NET MAUI's success is its vibrant open-source community. Contributions from individual developers, startups, and large organizations alike have propelled the framework forward—adding new features, fixing bugs, expanding third-party library support, and refining developer tools. This collaborative effort ensures that .NET MAUI remains agile, innovative, and aligned with real-world needs.

Why Contributing to .NET MAUI Matters in 2026

Accelerating Framework Development

Open source contributions directly influence the pace at which .NET MAUI evolves. Whether it's enhancing performance on ARM devices, expanding support for emerging platforms, or improving Hot Reload capabilities, community input speeds up innovation. For example, recent contributions have led to significant performance gains in mobile and desktop apps, making .NET MAUI more competitive with frameworks like Flutter and React Native.

Building a Sustainable Ecosystem

Community support fosters a resilient ecosystem. When developers contribute code, documentation, tutorials, and answer questions, it lowers the barrier to entry for newcomers. This inclusive environment encourages more developers to migrate existing Xamarin.Forms apps to .NET MAUI, ensuring the framework's long-term viability and enterprise adoption.

Personal Growth and Recognition

Contributing to open source isn't just about giving back—it's also a path for individual skill development. Developers gain exposure to cutting-edge features, collaborate with industry experts, and build a reputation within the community. Many open-source contributors have even been recognized by Microsoft and leading tech companies for their valuable input.

How to Get Involved in 2026: Practical Steps for Contributing

Start with the Official Repository and Documentation

The primary hub for .NET MAUI open source contributions is its GitHub repository. As of 2026, the repository hosts a wealth of issues, feature requests, and discussion threads. Begin by exploring issues labeled “good first issue” or “help wanted”. These tags indicate tasks suitable for newcomers.

Complement your contributions by thoroughly studying the official Microsoft documentation. The tutorials, migration guides, and release notes keep you updated on the latest features like the redesigned dependency injection model and Blazor Hybrid support.

Engage with the Community

Active participation is key. Join the GitHub discussions, where developers and Microsoft engineers exchange ideas and troubleshoot issues. Participating in forums like Stack Overflow or Reddit can also deepen your understanding and help others. Additionally, follow official blogs, Twitter channels, and community events such as Microsoft Build or .NET Conf for the latest news and opportunities.

Contribute Code and Documentation

Once familiar with the project structure, start contributing code—be it bug fixes, performance improvements, or new features. Ensure your pull requests adhere to the project's coding standards, and participate in code reviews to learn best practices.

Documentation is equally vital. Improving tutorials, adding examples, or translating content helps lower the barrier for new developers. Clear, comprehensive documentation accelerates the adoption of .NET MAUI and enhances overall project health.

Develop and Share Open-Source Libraries

Beyond core framework contributions, building third-party libraries, controls, or plugins can significantly extend .NET MAUI's capabilities. Sharing these projects on GitHub invites collaboration and feedback, fostering an ecosystem of innovative tools. For example, custom UI controls, platform-specific integrations, or enhanced data binding libraries address real needs faced by developers.

Supporting the Community as a User and Advocate

If direct code contributions aren’t your forte, you can still support .NET MAUI's growth:

  • Participate in beta testing: Provide feedback on pre-release versions like upcoming .NET MAUI previews, helping identify bugs and suggest improvements.
  • Share your experiences: Write blog posts, record tutorials, or give talks at conferences to inspire others and share best practices.
  • Contribute to tutorials and sample apps: Creating real-world examples aids learning and demonstrates innovative use cases.
  • Engage with enterprise migration projects: Sharing insights from migrating large legacy apps to .NET MAUI can guide others and highlight pain points.

Benefits of Community-Driven Development in 2026

Community involvement directly impacts the framework’s maturity and stability. As contributions increase, Microsoft and the broader ecosystem can better prioritize features, fix bugs faster, and develop more robust third-party tools. This collective effort ultimately results in higher-quality apps, happier developers, and a more sustainable ecosystem.

Moreover, open-source contributions foster innovation. For instance, recent community-led efforts have led to the development of GTK4 backend support for .NET MAUI, expanding its reach into Linux environments—a move highlighted in recent news. Such developments demonstrate how collaborative efforts push the framework into new territories, making it truly cross-platform.

Conclusion: Join the Movement in 2026

As .NET MAUI continues its upward trajectory in 2026, the community's role becomes even more critical. Whether you're a seasoned developer or just starting out, contributing to open source offers a valuable opportunity to shape the future of cross-platform app development. By engaging with repositories, sharing knowledge, developing tools, or advocating for the framework, you help build a vibrant, innovative ecosystem.

In turn, you'll gain invaluable experience, strengthen your professional reputation, and influence the direction of one of the most promising frameworks of this decade. Embrace the spirit of collaboration—your contributions today lay the foundation for a more powerful and flexible .NET MAUI ecosystem tomorrow.

Case Study: Successful Migration from Xamarin.Forms to .NET MAUI in Large-Scale Enterprises

Introduction: The Shift Toward .NET MAUI in Enterprise Development

As of March 2026, the landscape of cross-platform app development is undergoing a significant transformation. Microsoft’s release of .NET MAUI 8.2 in February 2026 has solidified its position as the premier framework for building native applications across Windows, macOS, iOS, and Android. This evolution from Xamarin.Forms to .NET MAUI is driven by the need for improved performance, streamlined development workflows, and better integration with modern tools like Blazor Hybrid and Azure DevOps.

Large-scale enterprises, which historically relied on Xamarin.Forms for their mobile and desktop apps, are now actively migrating to .NET MAUI. This case study examines real-world examples of these migrations, the challenges faced, solutions implemented, and lessons learned—providing a roadmap for organizations contemplating or in the midst of their own transition.

Background: From Xamarin.Forms to .NET MAUI

Xamarin.Forms, introduced by Microsoft over a decade ago, revolutionized cross-platform app development by enabling developers to share UI code across multiple platforms. However, as of mid-2025, Xamarin.Forms was officially deprecated, with Microsoft emphasizing the advantages of .NET MAUI as its successor.

.NET MAUI offers a unified project structure, enhanced performance, and modern development features like Hot Reload for both XAML and C#. It also integrates seamlessly with Blazor Hybrid, allowing web UI components to coexist within native apps—an invaluable feature for enterprises seeking flexibility.

Adoption rates surged in 2025 and early 2026, with over 38% of new cross-platform C# applications choosing .NET MAUI. Its open-source nature, active community contributions, and ongoing performance improvements make it an enterprise-ready solution for large organizations seeking scalability and maintainability.

Case Study 1: Global Retail Chain Modernizes Its Mobile and Desktop Apps

Challenge

A leading global retail enterprise with over 10 million active users faced the challenge of modernizing its aging Xamarin.Forms apps. The existing solution was complex, with tightly coupled platform-specific code, slow performance on newer devices, and difficulty integrating new features like AI-powered recommendations.

The company aimed to unify its codebase, improve app responsiveness, and streamline ongoing development efforts, all while minimizing disruption to their extensive user base.

Migration Approach

The enterprise adopted a phased migration strategy. They created a new .NET MAUI project, leveraging the latest features like improved dependency injection and Hot Reload. Critical UI components were ported first, focusing on areas where performance gains were most needed.

To manage platform-specific code, the team utilized partial classes and platform abstraction layers. They also integrated Blazor Hybrid to gradually introduce web UI elements, reducing the risk of a complete overhaul in a single phase.

Microsoft’s migration tools and code analyzers helped identify incompatible APIs, accelerating the process. The team prioritized testing on real devices, especially on ARM-based smartphones and Windows machines, to ensure performance and stability.

Results & Lessons Learned

  • Performance Improvements: The migrated app exhibited a 25% increase in startup speed and smoother UI rendering, especially on the latest ARM devices, thanks to .NET MAUI’s optimized runtime.
  • Development Efficiency: The unified codebase reduced development time by approximately 30%, allowing faster rollout of new features.
  • Challenges: Some third-party libraries lacked full support in .NET MAUI initially, requiring custom wrappers or alternative solutions. Teams also needed training on new architecture patterns.

Key takeaway: A phased, well-planned migration leveraging new features like Blazor Hybrid and dependency injection can lead to substantial performance and productivity gains, even for large enterprise apps.

Case Study 2: Financial Institution Enhances Security and Compliance

Challenge

This financial enterprise depended heavily on Xamarin.Forms for its customer-facing apps. They faced increasing regulatory requirements, necessitating enhanced security features and better code visibility for audits.

The existing framework made security updates cumbersome, and the app's architecture lacked the flexibility needed to incorporate advanced security protocols and real-time updates.

Migration Approach

The organization opted for a comprehensive migration to .NET MAUI, focusing on security-first design principles. They utilized dependency injection extensively to manage authentication and encryption services, which simplified compliance auditing.

Furthermore, the team incorporated .NET MAUI Blazor Hybrid for parts of the app that required frequent content updates, reducing the need for app store redeployments.

They also adopted DevOps pipelines optimized for .NET MAUI, enabling continuous integration and automated testing across all target platforms.

Results & Lessons Learned

  • Enhanced Security: Improved modularity and injection of security services facilitated faster compliance updates and better audit trails.
  • Operational Efficiency: Automation reduced deployment times by 40%, and the hybrid approach allowed for quicker feature rollouts.
  • Challenges: The migration required retraining security teams and revising legacy workflows, highlighting the importance of cross-team collaboration.

Key takeaway: Prioritizing security architecture during migration ensures compliance and future-proofing, especially vital for regulated industries like finance.

Lessons Learned & Best Practices for Enterprise Migration to .NET MAUI

From these case studies, several best practices emerge for successful large-scale migrations:

  • Plan in phases: Break down the migration into manageable stages, focusing first on high-impact or less complex modules.
  • Leverage modern features: Use Hot Reload, dependency injection, and Blazor Hybrid to accelerate development and reduce risks.
  • Invest in testing: Conduct extensive testing on real devices across all target platforms to identify performance bottlenecks and ensure stability.
  • Train teams early: Upskill developers in .NET MAUI-specific patterns, architecture, and best practices to maximize productivity.
  • Utilize migration tools: Take advantage of Microsoft’s official migration guides, code analyzers, and community resources to streamline the process.
  • Engage the community: Contribute to open-source projects and participate in forums to stay ahead of best practices and emerging solutions.

These insights demonstrate that a strategic, well-supported migration to .NET MAUI can yield substantial benefits—improved performance, reduced costs, and future scalability—making it a compelling choice for large enterprises in 2026.

Conclusion: Embracing the Future of Cross-Platform Development

The migration stories from large enterprises highlight that transitioning from Xamarin.Forms to .NET MAUI is not only feasible but also advantageous, especially given the framework’s rapid evolution and expanding ecosystem. As Microsoft continues to enhance .NET MAUI with features like improved performance on ARM devices, seamless DevOps integration, and advanced hybrid UI capabilities, organizations that proactively adopt and adapt will gain a competitive edge.

With over 350,000 active developers driving innovation, .NET MAUI is shaping the future of cross-platform app development—making it an essential component of enterprise digital transformation strategies in 2026 and beyond.

Tools and Resources for Advanced .NET MAUI Development in 2026: IDEs, Libraries, and Frameworks

As we step into 2026, .NET MAUI (Multi-platform App UI) continues to solidify its position as the premier cross-platform framework supported by Microsoft for building native applications across Windows, macOS, iOS, and Android. The latest release, .NET MAUI 8.2, launched in February 2026, has brought notable improvements—ranging from enhanced performance on ARM-based devices to more robust Hot Reload capabilities and a simplified dependency injection model. For developers engaged in advanced app development, understanding the current ecosystem of tools, libraries, and frameworks is essential to unlocking the full potential of .NET MAUI in this rapidly evolving landscape. This article explores the top IDEs, third-party libraries, and frameworks that empower developers to craft high-performance, maintainable, and innovative cross-platform applications in 2026.

Integrated Development Environments (IDEs) for .NET MAUI in 2026

Visual Studio 2023 & 2023.5: The Backbone of MAUI Development

Microsoft’s flagship IDE, Visual Studio 2023 and its latest update 2023.5, remains the go-to environment for advanced .NET MAUI development. With dedicated support for .NET MAUI 8.2, Visual Studio offers a range of features tailored to streamline cross-platform app creation. Notably, its improved Hot Reload now supports both XAML and C# changes with near-instant feedback, enabling rapid UI and logic iteration—a critical advantage in high-complexity projects.

Enhanced debugging tools, including live visual diagnostics and performance profiling, allow developers to identify bottlenecks across multiple platforms efficiently. The integrated Azure DevOps support simplifies CI/CD pipeline setup, making it easier to deploy, test, and monitor apps across different environments seamlessly.

JetBrains Rider: A Cross-Platform Powerhouse

Rider has gained significant traction among .NET developers seeking a cross-platform IDE that runs natively on Windows, macOS, and Linux. Its deep integration with the .NET ecosystem, combined with a flexible plugin architecture, makes it suitable for complex MAUI projects. Rider's advanced code analysis, refactorings, and built-in debugger enhance productivity, especially when working on large solutions with multiple platforms.

In 2026, Rider’s support for Hot Reload and seamless integration with Docker and Azure pipelines make it a formidable alternative to Visual Studio for teams emphasizing cross-platform consistency and flexibility.

Essential Libraries and Frameworks Enhancing MAUI Development

CommunityToolkit.Maui: The Standard for Extended Functionality

Arguably the most essential open-source library for MAUI developers, CommunityToolkit.Maui, continues to expand its suite of controls, behaviors, and utilities. As of 2026, it includes enhancements such as advanced data visualization, improved accessibility controls, and support for custom animations. Its modular design allows developers to integrate only the components they need, reducing app bloat.

This toolkit accelerates development and promotes best practices, especially when implementing complex UI patterns or enterprise-grade features.

Prism for .NET MAUI: Structuring Large-Scale Applications

Prism remains a popular framework for managing complex applications using the MVVM pattern. In 2026, it offers refined dependency injection, navigation, and modularity features tailored to MAUI’s multi-platform architecture. Prism’s support for advanced state management and event aggregation helps in building scalable, maintainable apps, making it ideal for enterprise solutions or large projects.

SkiaSharp and Microcharts: Advanced Graphics and Data Visualization

For apps requiring sophisticated graphics, custom charts, or real-time data visualization, SkiaSharp continues to be the go-to 2D graphics library, with optimized performance for mobile and desktop platforms. Its integration with MAUI’s drawing APIs enables high-fidelity UI components.

Complementing SkiaSharp, Microcharts provides lightweight, customizable chart controls that support a variety of chart types, including line, bar, and pie charts. These tools are invaluable for enterprise dashboards and data-driven apps, offering both performance and flexibility.

Emerging Frameworks and Tools Supporting Cross-Platform Capabilities

Blazor Hybrid and .NET MAUI Integration

In 2026, Blazor Hybrid remains a critical component for developers seeking to blend web and native experiences. The latest updates have improved performance and stability, enabling rich web UI components within MAUI apps. This hybrid approach allows for rapid UI development, leveraging familiar web technologies while maintaining native performance—ideal for enterprise apps requiring seamless web integration.

Maui.Gtk: Extending Support with GTK4 Backend

The Maui.Gtk project, gaining momentum in 2026, provides a GTK4 backend for .NET MAUI, expanding its reach to Linux desktop environments. This development addresses the increasing demand for cross-platform desktop applications, making MAUI a truly universal framework. It also opens avenues for open-source contributions and custom platform support, further enriching the developer ecosystem.

DevOps and CI/CD Enhancements

Advanced developers are leveraging tools like GitHub Actions, Azure DevOps, and Jenkins with specialized pipelines tailored for MAUI projects. The latest updates include pre-configured templates for multi-platform builds, automated testing, and deployment workflows. These tools significantly enhance productivity, ensuring consistent quality and faster release cycles for complex applications.

Practical Insights for Advanced Developers in 2026

  • Stay Updated with Framework Releases: Regularly review the .NET MAUI release notes and community contributions to leverage new features like improved dependency injection and performance optimizations.
  • Leverage Modern IDE Features: Use Visual Studio’s enhanced debugging and Hot Reload capabilities to iterate rapidly, especially on UI-intensive features.
  • Utilize Open Source Libraries: Incorporate libraries like CommunityToolkit.Maui and Prism to reduce development time and enforce best practices.
  • Optimize for Performance: Take advantage of platform-specific APIs and graphics libraries like SkiaSharp to deliver high-performance, visually appealing apps.
  • Adopt Hybrid and Cross-Platform Technologies: Combine MAUI with Blazor Hybrid to create flexible, web-integrated applications that can be deployed across all target devices.

Conclusion

By 2026, the ecosystem surrounding .NET MAUI has matured into a robust, versatile environment for advanced cross-platform app development. With cutting-edge IDEs like Visual Studio 2023 and Rider, alongside powerful libraries such as CommunityToolkit.Maui, Prism, and SkiaSharp, developers are equipped to build sophisticated, high-performance applications. Innovations like Maui.Gtk and enhanced DevOps pipelines further extend MAUI’s capabilities, enabling enterprise-grade solutions that are scalable, maintainable, and future-proof. Staying abreast of these tools and frameworks is essential for developers aiming to harness the full potential of .NET MAUI in 2026 and beyond.

NET MAUI 2026: AI-Powered Insights into Cross-Platform App Development

NET MAUI 2026: AI-Powered Insights into Cross-Platform App Development

Discover the latest in .NET MAUI, Microsoft's leading cross-platform framework for building native apps on Windows, macOS, iOS, and Android. Analyze real-time updates, performance improvements, and migration trends with AI-powered insights to stay ahead in modern software development.

Frequently Asked Questions

.NET MAUI (Multi-platform App UI) is Microsoft's latest cross-platform framework for building native applications on Windows, macOS, iOS, and Android using a single C# codebase. Released officially in February 2026, it replaces Xamarin.Forms, offering improved performance, simplified development, and enhanced integration capabilities. Unlike Xamarin, which required separate projects for each platform, .NET MAUI streamlines development with a unified project structure, better dependency injection, and advanced Hot Reload features. Its architecture enables developers to create highly performant, native-like apps more efficiently, making it the preferred choice for enterprise and consumer applications aiming for broad device coverage.

Migrating from Xamarin.Forms to .NET MAUI involves several steps. Start by updating your development environment to Visual Studio 2023 with the latest updates supporting .NET MAUI. Next, create a new .NET MAUI project and gradually port your existing code, focusing on UI components, dependencies, and platform-specific code. Microsoft provides migration guides and tools to assist in this process, including code analyzers that identify incompatible APIs. During migration, leverage new features like improved dependency injection and Blazor Hybrid integration to enhance your app. Testing is crucial; ensure thorough testing across all target platforms. The migration trend is strong, with over 38% of new cross-platform C# apps adopting .NET MAUI in 2025, reflecting its stability and enterprise readiness.

.NET MAUI offers numerous advantages for cross-platform development. It enables developers to write a single C# codebase that compiles into native apps for Windows, macOS, iOS, and Android, reducing development time and costs. The framework provides high performance, especially on ARM-based devices, thanks to optimized runtime and rendering engines. Its unified project structure simplifies maintenance and updates. Additionally, .NET MAUI supports modern UI development with XAML, Hot Reload, and Blazor Hybrid capabilities, enhancing developer productivity. The framework also integrates seamlessly with Azure and DevOps tools, facilitating continuous integration and deployment. As of March 2026, over 350,000 developers actively use .NET MAUI, with adoption increasing steadily, especially among enterprises migrating from Xamarin.Forms.

While .NET MAUI offers many benefits, there are challenges to consider. As a relatively new framework (officially released in 2026), some third-party libraries and controls may still lack full support, requiring custom development or workarounds. Migration from Xamarin.Forms can be complex, especially for large legacy apps with intricate platform-specific code. Performance issues may arise if apps are not optimized, particularly on older devices or less common platforms. Additionally, rapid updates and new features mean developers need to stay current with evolving best practices. Enterprise adoption also requires thorough testing and validation to ensure stability across all target devices. Despite these challenges, ongoing community support and Microsoft's continuous improvements are mitigating many risks.

To develop high-quality .NET MAUI apps, adopt best practices such as leveraging MVVM architecture to separate UI from business logic, making your code more maintainable. Use dependency injection to manage services and improve testability. Take advantage of Hot Reload for rapid UI iteration and debugging. Optimize performance by minimizing platform-specific code, using efficient data binding, and testing on real devices regularly. Keep dependencies up-to-date and follow the latest official documentation for new features and updates. Additionally, implement comprehensive testing strategies, including unit, integration, and UI tests, to ensure app stability. Finally, engage with the community and contribute to open-source projects to stay informed about new trends and solutions.

.NET MAUI distinguishes itself by leveraging C# and the .NET ecosystem, making it ideal for developers already familiar with Microsoft technologies. It provides native performance and UI consistency across platforms, with a unified project structure that simplifies development. In comparison, Flutter (by Google) uses Dart and offers highly customizable UI components, while React Native (by Facebook) uses JavaScript and React, making it more accessible for web developers. Flutter tends to excel in UI flexibility, whereas React Native benefits from a large web development community. .NET MAUI's deep integration with Visual Studio and Azure provides advantages for enterprise solutions, especially those already invested in Microsoft tools. The choice depends on your team's expertise, project requirements, and target platforms.

As of 2026, .NET MAUI has seen significant advancements, including the release of version 8.2 in February 2026, which brought enhanced performance on ARM-based devices, improved Hot Reload capabilities, and a simplified dependency injection model. Adoption rates continue to grow, with over 38% of new cross-platform C# projects in early 2026 using .NET MAUI. Trends include widespread migration from Xamarin.Forms, increased open-source contributions, and broader third-party library support. Integration with Blazor Hybrid apps is now a key feature, enabling web and native UI blending. Additionally, Microsoft is focusing on optimizing enterprise migration tools, improving CI/CD pipelines, and expanding support for emerging device types, ensuring .NET MAUI remains at the forefront of cross-platform development in 2026.

Beginners interested in learning .NET MAUI can start with official Microsoft documentation, which offers comprehensive tutorials, sample projects, and migration guides. Microsoft Learn provides interactive modules tailored for different skill levels, covering topics like UI design, data binding, and deployment. Additionally, platforms like Pluralsight, Udemy, and YouTube host video courses dedicated to .NET MAUI fundamentals and advanced techniques. The developer community on GitHub and forums like Stack Overflow also offer valuable insights and real-world solutions. As .NET MAUI adoption grows, many open-source projects and sample apps are available to accelerate learning. Starting with small projects and gradually exploring new features will help build proficiency in this modern cross-platform framework.

Suggested Prompts

Related News

Instant responsesMultilingual supportContext-aware
Public

NET MAUI 2026: AI-Powered Insights into Cross-Platform App Development

Discover the latest in .NET MAUI, Microsoft's leading cross-platform framework for building native apps on Windows, macOS, iOS, and Android. Analyze real-time updates, performance improvements, and migration trends with AI-powered insights to stay ahead in modern software development.

NET MAUI 2026: AI-Powered Insights into Cross-Platform App Development
110 views

Getting Started with .NET MAUI in 2026: A Beginner's Guide to Cross-Platform App Development

Learn the fundamentals of .NET MAUI, including setup, basic architecture, and first steps to build your cross-platform app in 2026, tailored for newcomers.

Comparing .NET MAUI and Xamarin.Forms: Transition Strategies for Enterprise Developers

Explore the key differences between .NET MAUI and Xamarin.Forms, with practical advice on migrating enterprise apps smoothly in 2026.

For example, with MAUI’s multi-targeting capabilities, you can target Windows, macOS, iOS, and Android from one project, leveraging conditional code only when necessary. This architecture aligns well with enterprise needs for scalable, maintainable solutions.

For enterprise applications, this means smoother user experiences and reduced hardware requirements, which can translate into cost savings and higher user satisfaction.

Moreover, the framework emphasizes dependency injection (DI), with a simplified model that promotes better modularity and testability—crucial for enterprise-grade applications. The latest version also supports advanced DevOps workflows, including seamless CI/CD pipeline integration, further streamlining deployment cycles.

For large legacy apps, break down the migration into manageable phases—starting with UI components, then moving to business logic, and finally platform-specific features. This approach minimizes downtime and allows incremental validation.

Investing time in training reduces resistance and accelerates adoption. Many enterprise teams have reported that initial learning curves flatten quickly once core concepts are understood, especially with the abundance of recent tutorials and community resources.

Leverage migration guides from Microsoft, which outline best practices for converting XAML layouts, data binding, and platform-specific code. For apps heavily reliant on third-party libraries, check for updated MAUI-compatible versions or plan for custom replacements.

Pay special attention to platform-specific features, such as sensors or native controls, ensuring they function correctly after migration. Continuous feedback from beta testers can help refine the app before full deployment.

To mitigate these risks, adopt a phased migration approach, prioritize core features, and leverage Microsoft's migration tools and community resources. Additionally, ongoing training and stakeholder engagement are vital to ensure smooth adoption.

By carefully assessing your existing applications, planning a structured migration, and leveraging the latest tools and community support, enterprise developers can harness the full potential of .NET MAUI. The ongoing evolution of the framework promises continued performance gains, richer features, and broader device support—solidifying its role as a cornerstone of modern app development in 2026 and beyond.

Optimizing Performance in .NET MAUI Apps: Tips and Best Practices for 2026

Discover advanced techniques to enhance the speed, responsiveness, and efficiency of your .NET MAUI applications in the latest version era.

Leveraging AI and Machine Learning in .NET MAUI: Building Smarter Cross-Platform Apps

Learn how to integrate AI and machine learning features into your .NET MAUI projects to create innovative, intelligent apps in 2026.

The Future of Cross-Platform Development: Trends and Predictions for .NET MAUI in 2026 and Beyond

Analyze emerging trends, upcoming features, and the future trajectory of .NET MAUI to stay ahead in cross-platform app development.

Deep Dive into .NET MAUI Dependency Injection: Simplifying Complex App Architectures

Understand how to implement and optimize dependency injection in .NET MAUI for scalable, maintainable, and testable apps in 2026.

    // Register services
    builder.Services.AddTransient<IDataRepository, DataRepository>();
    builder.Services.AddSingleton<INetworkClient, NetworkClient>();

    return builder.Build();
}

}

public MainViewModel(IDataRepository dataRepository)
{
    _dataRepository = dataRepository;
    // Use the repository as needed
}

}

Building Blazor Hybrid Apps with .NET MAUI: Combining Web and Native for Seamless User Experiences

Explore how to develop hybrid applications using Blazor and .NET MAUI, leveraging web technologies alongside native capabilities in 2026.

Open Source Contributions and Community Support for .NET MAUI: How to Get Involved in 2026

Discover how developers can contribute to and benefit from the growing open-source ecosystem around .NET MAUI in 2026.

Case Study: Successful Migration from Xamarin.Forms to .NET MAUI in Large-Scale Enterprises

Analyze real-world examples of enterprise migrations to .NET MAUI, highlighting challenges, solutions, and lessons learned in 2026.

Tools and Resources for Advanced .NET MAUI Development in 2026: IDEs, Libraries, and Frameworks

Review the latest tools, third-party libraries, and frameworks that enhance productivity and capabilities for advanced .NET MAUI development in 2026.

Suggested Prompts

  • Technical Performance Analysis of .NET MAUI 8.2Evaluate latest performance metrics of .NET MAUI 8.2 across multiple platforms using CPU, memory, and load indicators in a 30-day window.
  • Migration Trends from Xamarin.Forms to .NET MAUIAnalyze adoption rates, migration patterns, and enterprise trends shifting from Xamarin.Forms to .NET MAUI in early 2026.
  • Sentiment and Community Engagement on .NET MAUIAnalyze online community sentiment, social media mentions, and developer feedback about .NET MAUI adoption and updates.
  • Feature Adoption and Usage Trends of .NET MAUI 8.2Identify the adoption rate of new features like Hot Reload, dependency injection, and performance enhancements over the past quarter.
  • Cross-Platform Performance Comparison: .NET MAUI vs AlternativesCompare performance, stability, and developer productivity between .NET MAUI and other cross-platform frameworks like Flutter and React Native in 2026.
  • AI-Driven Forecast of .NET MAUI Adoption by 2026Predict future adoption rates of .NET MAUI based on current data, migration patterns, and community engagement metrics.
  • API and Dependency Injection Trends in .NET MAUIAnalyze the evolution of dependency injection and API management practices in .NET MAUI applications during 2026.
  • Enterprise Migration Strategies to .NET MAUIDefine strategic approaches, risks, and best practices for enterprise app migration from legacy platforms to .NET MAUI in 2026.

topics.faq

What is .NET MAUI and how does it differ from previous frameworks like Xamarin?
.NET MAUI (Multi-platform App UI) is Microsoft's latest cross-platform framework for building native applications on Windows, macOS, iOS, and Android using a single C# codebase. Released officially in February 2026, it replaces Xamarin.Forms, offering improved performance, simplified development, and enhanced integration capabilities. Unlike Xamarin, which required separate projects for each platform, .NET MAUI streamlines development with a unified project structure, better dependency injection, and advanced Hot Reload features. Its architecture enables developers to create highly performant, native-like apps more efficiently, making it the preferred choice for enterprise and consumer applications aiming for broad device coverage.
How can I migrate my existing Xamarin.Forms app to .NET MAUI?
Migrating from Xamarin.Forms to .NET MAUI involves several steps. Start by updating your development environment to Visual Studio 2023 with the latest updates supporting .NET MAUI. Next, create a new .NET MAUI project and gradually port your existing code, focusing on UI components, dependencies, and platform-specific code. Microsoft provides migration guides and tools to assist in this process, including code analyzers that identify incompatible APIs. During migration, leverage new features like improved dependency injection and Blazor Hybrid integration to enhance your app. Testing is crucial; ensure thorough testing across all target platforms. The migration trend is strong, with over 38% of new cross-platform C# apps adopting .NET MAUI in 2025, reflecting its stability and enterprise readiness.
What are the main benefits of using .NET MAUI for cross-platform app development?
.NET MAUI offers numerous advantages for cross-platform development. It enables developers to write a single C# codebase that compiles into native apps for Windows, macOS, iOS, and Android, reducing development time and costs. The framework provides high performance, especially on ARM-based devices, thanks to optimized runtime and rendering engines. Its unified project structure simplifies maintenance and updates. Additionally, .NET MAUI supports modern UI development with XAML, Hot Reload, and Blazor Hybrid capabilities, enhancing developer productivity. The framework also integrates seamlessly with Azure and DevOps tools, facilitating continuous integration and deployment. As of March 2026, over 350,000 developers actively use .NET MAUI, with adoption increasing steadily, especially among enterprises migrating from Xamarin.Forms.
What are some common challenges or risks when adopting .NET MAUI?
While .NET MAUI offers many benefits, there are challenges to consider. As a relatively new framework (officially released in 2026), some third-party libraries and controls may still lack full support, requiring custom development or workarounds. Migration from Xamarin.Forms can be complex, especially for large legacy apps with intricate platform-specific code. Performance issues may arise if apps are not optimized, particularly on older devices or less common platforms. Additionally, rapid updates and new features mean developers need to stay current with evolving best practices. Enterprise adoption also requires thorough testing and validation to ensure stability across all target devices. Despite these challenges, ongoing community support and Microsoft's continuous improvements are mitigating many risks.
What are best practices for developing with .NET MAUI to ensure high-quality, maintainable apps?
To develop high-quality .NET MAUI apps, adopt best practices such as leveraging MVVM architecture to separate UI from business logic, making your code more maintainable. Use dependency injection to manage services and improve testability. Take advantage of Hot Reload for rapid UI iteration and debugging. Optimize performance by minimizing platform-specific code, using efficient data binding, and testing on real devices regularly. Keep dependencies up-to-date and follow the latest official documentation for new features and updates. Additionally, implement comprehensive testing strategies, including unit, integration, and UI tests, to ensure app stability. Finally, engage with the community and contribute to open-source projects to stay informed about new trends and solutions.
How does .NET MAUI compare to other cross-platform frameworks like Flutter or React Native?
.NET MAUI distinguishes itself by leveraging C# and the .NET ecosystem, making it ideal for developers already familiar with Microsoft technologies. It provides native performance and UI consistency across platforms, with a unified project structure that simplifies development. In comparison, Flutter (by Google) uses Dart and offers highly customizable UI components, while React Native (by Facebook) uses JavaScript and React, making it more accessible for web developers. Flutter tends to excel in UI flexibility, whereas React Native benefits from a large web development community. .NET MAUI's deep integration with Visual Studio and Azure provides advantages for enterprise solutions, especially those already invested in Microsoft tools. The choice depends on your team's expertise, project requirements, and target platforms.
What are the latest developments and trends in .NET MAUI as of 2026?
As of 2026, .NET MAUI has seen significant advancements, including the release of version 8.2 in February 2026, which brought enhanced performance on ARM-based devices, improved Hot Reload capabilities, and a simplified dependency injection model. Adoption rates continue to grow, with over 38% of new cross-platform C# projects in early 2026 using .NET MAUI. Trends include widespread migration from Xamarin.Forms, increased open-source contributions, and broader third-party library support. Integration with Blazor Hybrid apps is now a key feature, enabling web and native UI blending. Additionally, Microsoft is focusing on optimizing enterprise migration tools, improving CI/CD pipelines, and expanding support for emerging device types, ensuring .NET MAUI remains at the forefront of cross-platform development in 2026.
Where can I find beginner resources and tutorials to start with .NET MAUI?
Beginners interested in learning .NET MAUI can start with official Microsoft documentation, which offers comprehensive tutorials, sample projects, and migration guides. Microsoft Learn provides interactive modules tailored for different skill levels, covering topics like UI design, data binding, and deployment. Additionally, platforms like Pluralsight, Udemy, and YouTube host video courses dedicated to .NET MAUI fundamentals and advanced techniques. The developer community on GitHub and forums like Stack Overflow also offer valuable insights and real-world solutions. As .NET MAUI adoption grows, many open-source projects and sample apps are available to accelerate learning. Starting with small projects and gradually exploring new features will help build proficiency in this modern cross-platform framework.

Related News

  • New Maui.Gtk Project Provides A GTK4 Backend For Microsoft's .NET MAUI - PhoronixPhoronix

    <a href="https://news.google.com/rss/articles/CBMiZ0FVX3lxTE1YS1BZQU1oUy0wZ0VoNUhTX3I1Qm5DdG8wWmxJRzk2Wjk0UUVkVjAwX1Q0WlM1MDNoWTFQYlZiMVJ5QlE3UkZaMGxXbUp4bHBRTkJrUEd3MlFtbER1elU3UmFBOUVUQTQ?oc=5" target="_blank">New Maui.Gtk Project Provides A GTK4 Backend For Microsoft's .NET MAUI</a>&nbsp;&nbsp;<font color="#6f6f6f">Phoronix</font>

  • .NET 11 First Preview Released - i-programmer.infoi-programmer.info

    <a href="https://news.google.com/rss/articles/CBMiigFBVV95cUxPNWI0cHUzLUZ4a0pnSENEV0tKTTBlcXM5YXBhaVQwU3cwU1Rzc0hQTFJpUk0yZnNxN2dEV0d4R1BpSVRqb2pPXzNraUdhYXJ2OFVnUExNWVBCWTQ0blQwM1p6cnFFejktZHJ6TnU1cHJPQm5hUURDV1NkWUdsOEtCS1RkZlZDbU5ad2c?oc=5" target="_blank">.NET 11 First Preview Released</a>&nbsp;&nbsp;<font color="#6f6f6f">i-programmer.info</font>

  • UH System reaches 20% of net-zero energy goal - Maui NowMaui Now

    <a href="https://news.google.com/rss/articles/CBMiggFBVV95cUxNdl84VGFfXzRhNlRxdmo5bTdqR09oZ3E0WmlBdVV5WHAwOThZcUtyNndoM280bVNMd280TnJmSVdzSnpaTjBVMWNxR1A5Q0hLSE5MQzJ1aHIyVlN1ZzhaVGExekZOckN2dFlYSFdsbWxRbGF1Z1dNdEVZMDZDaTlqUEFn?oc=5" target="_blank">UH System reaches 20% of net-zero energy goal</a>&nbsp;&nbsp;<font color="#6f6f6f">Maui Now</font>

  • Microsoft unveils first preview of .NET 11 - InfoWorldInfoWorld

    <a href="https://news.google.com/rss/articles/CBMikgFBVV95cUxQUHNzUnhyYXR5dUM2Tms4THd2SlNzeDE2U2xBZEJFT2RuZDI1Q1g1UmtQaDl6OHhCTlRUZ1A3WFhyc2c4NXRIRURnSnRwdndQTG1MSHExQ0hJNUplSDVMOHpndkZScDlQRC1pYkJNUVFISXZkWkJsakh5UmdGcDlSQXZtYUZUcjNwaVNuS1RhbWZVdw?oc=5" target="_blank">Microsoft unveils first preview of .NET 11</a>&nbsp;&nbsp;<font color="#6f6f6f">InfoWorld</font>

  • Microsoft Releases .NET 11 Preview 1 - Thurrott.comThurrott.com

    <a href="https://news.google.com/rss/articles/CBMie0FVX3lxTFBvQ3Y0ZTVfRkVpbVFEUlNIWXpQTUI3aGt6M2drU0poekRxS25UTGQwUGwxUXpLOEVJWVY1aXh6dVlsbGRHaUl2RjVYMHAydWUtZUY5bDVPLXZBRXN0VmFLSnBraG12Wkp5MEdZbGRHYy10SFBHby1wTTRWcw?oc=5" target="_blank">Microsoft Releases .NET 11 Preview 1</a>&nbsp;&nbsp;<font color="#6f6f6f">Thurrott.com</font>

  • Syncfusion® Sponsors .NET MAUI Day London and Attends Swetugg Stockholm 2026 - GlobeNewswireGlobeNewswire

    <a href="https://news.google.com/rss/articles/CBMi3wFBVV95cUxPcTRYbFNabFdoSGNSNkhUT1lCYUdLOU5oMHR1aVJ1aFZqdjhmblh3bnZZd25DNjFES0MzTDBGV213SVVTOHVXOFNleXdqLWd0eU55UjJERm5DUkpCdFIwbnZJdzM0SktrWUVIZkNyTXRFZ05yMHJ0a3RJUEM3SVhMU0NNUGdYUGsxRGdQMkxkcjhXM1FyQXJJNmlqWFpSWVIzY0RTTlhSVkV1YV9LblU3R0o3ZFBIUVJ1QTlzaGM1NmkyX1FRN1BMM0VEeTNuMkNNS1pDczZESVByVVhGOXpZ?oc=5" target="_blank">Syncfusion® Sponsors .NET MAUI Day London and Attends Swetugg Stockholm 2026</a>&nbsp;&nbsp;<font color="#6f6f6f">GlobeNewswire</font>

  • Modernize Xamarin.Forms to .NET MAUI with AWS Transform - Amazon Web ServicesAmazon Web Services

    <a href="https://news.google.com/rss/articles/CBMilgFBVV95cUxPNDRlVFJMM2xka0xfc1hrQlhvMUcwLTE1SzBtLUVtUk9rUG5NSTlYUnBwU3BVRmN1T19lN2dSMl80OG5OUTJyQzBUOGtmT09uRnIxWjJYMTQ0RmlHQ21ORk1FV1cwU2dmbjdINF9uOUx4MGFxM0tOLW1ZZzdQcGVkQV9LSG1uVGVteEdtVlI2SERJV2lCdUE?oc=5" target="_blank">Modernize Xamarin.Forms to .NET MAUI with AWS Transform</a>&nbsp;&nbsp;<font color="#6f6f6f">Amazon Web Services</font>

  • Hawaiʻi Legislature opens grants-in-aid applications for safety net organizations - Maui NowMaui Now

    <a href="https://news.google.com/rss/articles/CBMiugFBVV95cUxQQkJ2WHBPZk5BYUJuYmQxQ0VhXzBOOVU1SUdCNksxR3FSS0FUSW51Vm04Q1VrTlNJV2RpYXBlaWV6Z2l3RER0aV9SX195ZWtOaDhRdTEwTlZOdGhaSTg1b1dPVldZRkpjZmp1TkdaenpkR3VvMngxWERtOTE5YjZoMDFDWHpjU0x1Ni1RVU12b2syNHJKRXdMQVR2ZWN2SUtEV1JHWFl1RE5vREVqS0dYbDNyNi0xM0FxOWc?oc=5" target="_blank">Hawaiʻi Legislature opens grants-in-aid applications for safety net organizations</a>&nbsp;&nbsp;<font color="#6f6f6f">Maui Now</font>

  • Top 10 Reasons Why You Should Consider Xamarin to .NET MAUI Migration - vocal.mediavocal.media

    <a href="https://news.google.com/rss/articles/CBMingFBVV95cUxQSXFqX1FBaGRvZ1ZfcEIweHVGYTFFQ3FzTU40ZW5kekR1YjJ3MHdodGdfSnhoNVdXQzFlVVJ5V3ZfWXJwY1NLQnVZcFVfeF9XYURqajY3cEZsNUgyUUhrZlpxdGp1bWN0UC15VzNUcmNrLTdSUi1RLWRmNUNqM0pVQXdzWEtCN25DZzk0MG9TRG9udXlsQnVWNmN5eTE4UQ?oc=5" target="_blank">Top 10 Reasons Why You Should Consider Xamarin to .NET MAUI Migration</a>&nbsp;&nbsp;<font color="#6f6f6f">vocal.media</font>

  • NET 10 Officially Released with Major Performance, AI, and Developer Experience Improvements - infoq.cominfoq.com

    <a href="https://news.google.com/rss/articles/CBMiY0FVX3lxTE1ISEp3MmhFU0I5YTBiMGp2UDhhc2RYZ1dWakpwTXNsMlItQVpRWFkyVXFkZXF0aTJHcXFhMkIwQWI4SlhpblF3NmdfWXJOdmljOWpUV045RlFsRWtaTmxtM3ktQQ?oc=5" target="_blank">NET 10 Officially Released with Major Performance, AI, and Developer Experience Improvements</a>&nbsp;&nbsp;<font color="#6f6f6f">infoq.com</font>

  • .NET MAUI will get Linux and browser support via Avalonia - theregister.comtheregister.com

    <a href="https://news.google.com/rss/articles/CBMidEFVX3lxTE9Ib1NTNkNWWmVUbUJNUnExcVJuMkhCcXk5bGRtQnp6Skd1ZUt0NzhlemNWTzdXdWFyR2pFZWJ6Z0NGdG8yV1VKT1NXaGdkLTJLcnUtMDJyemxURzhtS2ZfalNJSkZTOTViRndsN3RnOGJ5ZVZv?oc=5" target="_blank">.NET MAUI will get Linux and browser support via Avalonia</a>&nbsp;&nbsp;<font color="#6f6f6f">theregister.com</font>

  • .NET 10 Arrives with AI Integration, Performance Boosts, and New Tools - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMiwwFBVV95cUxNS3dtb1lsbllCSk5fUjVSRGtVeHhRLU5UV1JyQ3lGdTRBLVBDZVZBaHZQdDM2U1BwOHVObi1ybGxUX2I5MEpySmpaTmZaWndRdlROak9XZVBkZkpuUGs4NHhpaFRVM25mTTUyZ1dHM2xTZl9QRGxWOWt3MmxDS3E2a2JZeHVPTFdqclJUbmxJc0hTci1wX2hMek9VQ2dPbjBGVFk0MWxuTTY0Y0k1Tk9ka2ZqcGNqT1o4QXNxWTJPMlAySVk?oc=5" target="_blank">.NET 10 Arrives with AI Integration, Performance Boosts, and New Tools</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • Win 11 Update Borks .NET MAUI Projects Built on .NET 8: 'Microsoft, What Have You Done?' - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMi2wFBVV95cUxNQ2lqRzh4N3pFZ3pOczNiVGc1SWVraDV2c045a3U2VzYzbGVIcjRPYWNLYzI5bFJ5dzM5bXdHZEotdVRLWFgzUTBJQ0p0ZHI2OTJUSjlGWXhOd2pPT00tQlVJXzU5bkFPRW5oRVpXU0Z1bmdfaUtmdHZxbnZRd0xGMnZ6c3F0dE9VYlJTZGctb0tYOHQzVlYtRmFBWnllLWhSQWEzaktrTEtoUndUR3F2T3FhNzctOTNEM0REYVlaZ01MV183QU9uZ1pUN3RWM2RYZTlIRGdzSG81QU0?oc=5" target="_blank">Win 11 Update Borks .NET MAUI Projects Built on .NET 8: 'Microsoft, What Have You Done?'</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • .NET 10 Final Release Candidate Focuses On MAUI - i-programmer.infoi-programmer.info

    <a href="https://news.google.com/rss/articles/CBMioAFBVV95cUxNZkpIWmZUR2VPU1hoa2lLUlViVWw5ZXBVell4ck92N0NlRUstRWg5SkRPUjRvTFR4elNrSUtoQjZtU090T0loQmpVc2IxTDVOX0xtTWI1aEYyRUFQczNaWWNIclhNUG1aV09BMlFNemx6UUZETmVCbjgwMVljcDZfMDY3V01aQVBtSEZicGIxSUlodWN0NUh3d0Z5R1Q3WEI2?oc=5" target="_blank">.NET 10 Final Release Candidate Focuses On MAUI</a>&nbsp;&nbsp;<font color="#6f6f6f">i-programmer.info</font>

  • .NET 10 RC 2 features .NET MAUI, Android updates - InfoWorldInfoWorld

    <a href="https://news.google.com/rss/articles/CBMilwFBVV95cUxNRG05ZENMa1plMTNBbzRDdTlVRGNRS0RwNlBoSml6V3ZrNGI4ZzlfenZOa3ZBaENrdmN2OHV4RGtyOTZnLXVyNkRFdmc0SVk0WlJZUEJqeW8xNU5Od3BkWko1NzY0ZFN6LWg3MkFjSzlfSnNFQ01MaFB4bXNsVHAydVFzNDNoSWs5WlVRQmRkTEtVMmdGQm53?oc=5" target="_blank">.NET 10 RC 2 features .NET MAUI, Android updates</a>&nbsp;&nbsp;<font color="#6f6f6f">InfoWorld</font>

  • Uno Platform Announces Collaboration with Microsoft .NET - Thurrott.comThurrott.com

    <a href="https://news.google.com/rss/articles/CBMilgFBVV95cUxNcld6SkJ6b29wR2pqZU9UTUVudDkyODdkWU8xNGhsX1FtZDNwZWE3Sm9JVk5iQW9kT25tUzVNNUQ2WVFHdTNUbU9pVllaNC1yQjluQ1d4dFd0Yzllc0drTVp5YjE0aENxMDdfQUdvWnhrSDJ4bTlfdG1tSGd2TzA2WnFkTThobEJERURhNllzdmZFdHBRMnc?oc=5" target="_blank">Uno Platform Announces Collaboration with Microsoft .NET</a>&nbsp;&nbsp;<font color="#6f6f6f">Thurrott.com</font>

  • NET 10 Release Candidate 2: Finalizes SDK, MAUI Stabilization, and MSBuild Enhancements ahead of GA - infoq.cominfoq.com

    <a href="https://news.google.com/rss/articles/CBMiakFVX3lxTE5TRVdTa2sydDFGdkh0Q3RmMDk2a0dpTUE1dkJaVkFpQ3YwaWtOMnVCTmNlMzVNRGpyS2QzNGJDM2puMXBXRmdVeHBXc2k0SWdLQ0dYb3VmUWIzSmZ3MVp2TzdqWV9CYkd0VFE?oc=5" target="_blank">NET 10 Release Candidate 2: Finalizes SDK, MAUI Stabilization, and MSBuild Enhancements ahead of GA</a>&nbsp;&nbsp;<font color="#6f6f6f">infoq.com</font>

  • .NET 10 RC2 Is Final Step Before GA, with Help from Uno Platform - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMivAFBVV95cUxOSW91eERpSTh1ckNkQnFwT2NnSDdzaHBjeUtnZzdzeW9idGt6SXdJaEtxZmt5QXNGa3RsQVl1TGVUUmhfc1RTcTNrbDBnM0pNUFI4LVc5V3Jsa0d5VXdMTXZ0TkpIY3U0dzN5ejdnUC1sd1FDSHhDTE5IZ2lZZEYzaWx3alV4U25jbTBQZXNrTm84dTI3YzRQVlFFUnY3LVczam0xbDR1UEswWmFqTzlaRFN1QnJjV3A1d19KbA?oc=5" target="_blank">.NET 10 RC2 Is Final Step Before GA, with Help from Uno Platform</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • Maui’s safety net on edge: Federal funding cuts bring financial and psychological stress to local nonprofits - Maui NowMaui Now

    <a href="https://news.google.com/rss/articles/CBMi1AFBVV95cUxQMkpGYXByTnAtd1JoYTFuVGg0VF9VM2lrZ1lGa19BdjJVVXBuTlhKM29Mb0JWbjA5TVFlNWo4eGpmTmZNeHNUSmp2SWMtZkM4WU1uSWdxWHFPMzV1aFM4UmpRWmlmMVVIT3RCXzhXbkI3alZIeHRtNEpRYnZkUC1pX2t2NmJVQmpWTGdSenJzOWlraFpyb25rRy1IdWprRldVN1hpQXJNRFpvckZIbjFuczQ5UEpOR2tYcHJEN1hTUjgwVGR1NmZkWVU2UGFJR0o0dE9Hdw?oc=5" target="_blank">Maui’s safety net on edge: Federal funding cuts bring financial and psychological stress to local nonprofits</a>&nbsp;&nbsp;<font color="#6f6f6f">Maui Now</font>

  • .NET MAUI RC1 Brings Diagnostics and Experimental Android CoreCLR Support - infoq.cominfoq.com

    <a href="https://news.google.com/rss/articles/CBMiXEFVX3lxTFA2QmszdnVlWTdzTzZJbF9UeUU4SkpDQ0UxT0hERDNISlNVWlhUeXh1TUtmYXBnbGhPWlRfN2dSRlJ4MlJTRHFLeWdBUi1HUk5UWnd3MFd0b3ZLcGZl?oc=5" target="_blank">.NET MAUI RC1 Brings Diagnostics and Experimental Android CoreCLR Support</a>&nbsp;&nbsp;<font color="#6f6f6f">infoq.com</font>

  • Microsoft reveals performance boost for .NET MAUI apps after Google forces 16 KB page sizes - NeowinNeowin

    <a href="https://news.google.com/rss/articles/CBMiuwFBVV95cUxNNDF6VUJhUnBhY204NmFmVmRPWG1INjU3TDJ4VEF1Zmt4bXJjbTlFU0pFbUxaM2NvUTNCcktXYmVEU0NMR0c0Q21ZYUwwNEtaenlTMUYwSDlEU0xTOVdldk91WWtDdGZ2emRQdXBmMWlSNnhYSm5PSlZRQWlJOTJYN2xQd0UwWDBfdU96d0NGS1lmcDhHbU9jLUFrZlJiejRrMFBIdkNxTE4zYy1fblN6b0NkU2NlVURsN2RB0gG6AUFVX3lxTFBfSlFYMXBpWURQVE1oUmRsMkc2Q3ViNXN3T0ltZEVHcUkwSTl3T20xS1ZFMGxPNG5NdFA0WF9Ta3J0dmtNSmVNUmVFTlFZa3FkSWJMNmFlRmlGUkZXMUMwR2ZoV2VXLTAzOVZkNFJ2REFpLUxiMjVVNVdNdXhoT0ZWSUlvdm01bGtCcnhnVF8wUzJYNmFBd1VaUTVKRUc3QURscVpod21TdkdiMGhiSVk0UmN0ZXc2aTh2QQ?oc=5" target="_blank">Microsoft reveals performance boost for .NET MAUI apps after Google forces 16 KB page sizes</a>&nbsp;&nbsp;<font color="#6f6f6f">Neowin</font>

  • In Their Own Words: Kaponoʻai Molitau - Maui No Ka Oi MagazineMaui No Ka Oi Magazine

    <a href="https://news.google.com/rss/articles/CBMic0FVX3lxTE5lci1RdjFRaGJic294eGpwdTcwVC01MWlVLVgtUUhGY1Vrby14SF9HMU1PRWVZMGJLNDB0enJIOHZyd3Q1QU5JRHgwcnZKTl9HWjBpUXNBQjRHQXYwazcybHRrVGZFWWFDSFdQeXFMS3RTTmM?oc=5" target="_blank">In Their Own Words: Kaponoʻai Molitau</a>&nbsp;&nbsp;<font color="#6f6f6f">Maui No Ka Oi Magazine</font>

  • .NET Preview 7 Adds XAML Source Generator - i-programmer.infoi-programmer.info

    <a href="https://news.google.com/rss/articles/CBMimAFBVV95cUxQeVRXRWo3emxJaEhRUTczTmJrRWFfeVJnMGJFT2VoVmEtTFh4NTdVVkx2T2FYQlNnVVZmT1I3T21BTGg3MEdlckx5VnVTX2lWRElzMDd5b2xRb1NKRlFMRGhtNko4OF9vWV83MFpOZ25QYlNUbWFrU1IxZUdIX1U1bXdKUWVJdlB2eXoxdWc1MDZldkNPVzFMMg?oc=5" target="_blank">.NET Preview 7 Adds XAML Source Generator</a>&nbsp;&nbsp;<font color="#6f6f6f">i-programmer.info</font>

  • NET 10 Preview 7 Delivers ASP.NET Core, Blazor, and MAUI Enhancements, with C# 14 Feature Complete - infoq.cominfoq.com

    <a href="https://news.google.com/rss/articles/CBMiZkFVX3lxTE1pSkxvTjdUN0RxX1NhVlFlZ1RrOTVReHdpNW93MXdoTm8zQzBIRDdoaE5CZUtMQ3V6N0VvTURYdUVKZ3hRSEFZc0dGYTkwSFlxWlAzVHp5VGVvWlR5cmhKc1F1dlFfUQ?oc=5" target="_blank">NET 10 Preview 7 Delivers ASP.NET Core, Blazor, and MAUI Enhancements, with C# 14 Feature Complete</a>&nbsp;&nbsp;<font color="#6f6f6f">infoq.com</font>

  • .NET 10 preview out now, likely to be near feature-complete - theregister.comtheregister.com

    <a href="https://news.google.com/rss/articles/CBMic0FVX3lxTFAyZFJocHlzWjBLaDB2c2M3MUdMVGtfc295UEJBampBTWxWcEpkUWhhSURFSERCUGR3bG9YOWJZNHJnZ2YwR3hBVEx4SVVpNEs4QkFtWVRwYjh1S2ZnamM0TlZ3UzE5Z2tRbDZpVEVYaHNRQm8?oc=5" target="_blank">.NET 10 preview out now, likely to be near feature-complete</a>&nbsp;&nbsp;<font color="#6f6f6f">theregister.com</font>

  • XAML Speeds Up, JSON Gets Smarter in .NET 10 Preview 7 - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMirwFBVV95cUxORU9yTlB0RVZtY0NDWWpZbG81eDd2Um90a0pFOUxDam5kakVBQWJGNkV1LXo4bGwxTDVTZF90c2NINGJuZ24wTjVkQ0RVdjNIaXFPVk5uRnNDeHRfYzBtdFhueUVQVGJJTTdWUHp0VVllSDBscXN0SXR6a0tRVXVqRDd3ZHFJMXM5S0c1RVRLRmh4WTJzMVo4amczWk5xSF9sRFpQbjRFMUdBVjdRUUZn?oc=5" target="_blank">XAML Speeds Up, JSON Gets Smarter in .NET 10 Preview 7</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • Records Section Temporary Closure - Maui NowMaui Now

    <a href="https://news.google.com/rss/articles/CBMic0FVX3lxTE9GVjhmNU50ZVZsQ255NjFsdTdONTdXa1BwMWxTY2ltY010Z20xQkhDZ2RLWWpTRG9CdWN6aUZ1UjNZLWVJLTBtR2V2Z05Wc2tZWVZwcWlJOWsyVDZST1gyWHNBTl9KT0RPbjVoQ0l6N1h0X0E?oc=5" target="_blank">Records Section Temporary Closure</a>&nbsp;&nbsp;<font color="#6f6f6f">Maui Now</font>

  • GitHub Copilot Is Rising All-Time Contributor to .NET MAUI Repo - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMiswFBVV95cUxPazZOT3NHcERFMzNycjZqSVh0UnhzTjdzS0F5MU5EeHFSQnAxazUyT096SDZuZFNRU2NqTFVkNld4ZTdfYkx0dVc1d3VlVkdIeE5iSXdCVkJySzBtZzlUOERFY3lXV21EcVBQM1EwY2dISHQ0b3BEUVBvUl9ZYzFzTl9iZkI0VjJpekNXOW5ZV0hYc29vYkxWQlItYy1hX1JnUFgxR1VLZWtwYWcwQTV1Y3lDZw?oc=5" target="_blank">GitHub Copilot Is Rising All-Time Contributor to .NET MAUI Repo</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • ASP.NET Core and Blazor Dominate 'Relatively Small' .NET 10 Preview 6 - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMiuwFBVV95cUxOLWgwcWFlZmxnN3pXczNtbzZ3UkZFVUVNd0Y4Yk12VVdLU3FtcVExbHg5a2p2dXZnOVpTSml3ejlmQmU0QnV4N0JNbEswMDJseld6MlE2YWgwdFR0QkhzUVQwSzVoUWJZTUNQNC1ZTFRIdDlxZEVRRDVhVWFQaGtjVHVPQUh4R2NmcFZuS25YM1hhc0d2MDc2c3kwcXNGQU1ZblRHZWNvWkx5NjZaaWpQRmZLbVN0dVRrREM0?oc=5" target="_blank">ASP.NET Core and Blazor Dominate 'Relatively Small' .NET 10 Preview 6</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • .NET 10 Preview 5 Brings Blazor Observability, XAML Simplification and More - infoq.cominfoq.com

    <a href="https://news.google.com/rss/articles/CBMiZkFVX3lxTE5CdndST3ZuWWRwUWRJV2hwamJ0WlRPNmdhbFZnaXoyaDFuRlhhU0RieXhpNFNQTkFDS1J6aU1Gb3lXNHhlX1NSNlV4ZkQtUVZNd2tMallXeTNTbnFXalB6VEU0OGNLUQ?oc=5" target="_blank">.NET 10 Preview 5 Brings Blazor Observability, XAML Simplification and More</a>&nbsp;&nbsp;<font color="#6f6f6f">infoq.com</font>

  • Building a Full-Stack Bookstore App in 100 Days with .NET MAUI and Clean Architecture - HackerNoonHackerNoon

    <a href="https://news.google.com/rss/articles/CBMiqwFBVV95cUxPSU4wT2RkRlR0SzVlcHBjV01ENVRMZlVvSFFaVkw0U2lFQkNDMmo2LXBXREhwZDltSkhvcUpGRnNSY2V4NGFmd3VhYUNtUjF2WGlaUEJKbEt5anNmX0FxTEdEYTlsVkhsc3M0NFhkd0c3N3ZTTFNpdU85eWhubWk3Qm1NRjFSLURPVWRrSUlqWVk5R2JscGpXdmxsMGVPLU0zZHJSQmZEZmkzc1k?oc=5" target="_blank">Building a Full-Stack Bookstore App in 100 Days with .NET MAUI and Clean Architecture</a>&nbsp;&nbsp;<font color="#6f6f6f">HackerNoon</font>

  • Meet the New .NET -- Nothing Like the Old .NET - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMioAFBVV95cUxOTzBwX0dGS3ZEOXk5R2dnX3oteVVjN2o5MnVtaXhFWXlvRXZjWmpRWDItckJnZ3VNbjdVNHJHTXZfcHRGXzhaOVdJcE91cWNRWnprQXpVS3QzVXBCMzEyTldsWjJUNDhQTVdXdWw4U0RFVFA5TWtUNG5TRHhfRzM1akp2M1cwd01CM1pGbF9IZ3M5eVJXVkZwUjJ2Yk05Ulpx?oc=5" target="_blank">Meet the New .NET -- Nothing Like the Old .NET</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • .NET MAUI Overview for Technology Executives - vocal.mediavocal.media

    <a href="https://news.google.com/rss/articles/CBMidEFVX3lxTE1Qb003YTVzNGp2T2QwWnRTVFdmWkNjUV90VkMxWWVicURTMjh5UW96RmVzMlc5U2E1blhLLVg2MFBMUHJLRGNTRGQyMVlMSklLYkYxUXZxWTBybGJPZnhiT2YzN3pzVTIwTU8wcGhpeHZIVjkx?oc=5" target="_blank">.NET MAUI Overview for Technology Executives</a>&nbsp;&nbsp;<font color="#6f6f6f">vocal.media</font>

  • Zimperium’s Zero-Day Detection of Android Malware Using .NET MAUI Framework - ZimperiumZimperium

    <a href="https://news.google.com/rss/articles/CBMiogFBVV95cUxNQ2g3dnNhaG1zMTZzUFhaNzlSNnVWLVU5M3FMdVZFanRLZGd0U2lfUWhsM1ltdDVacHlud0NndDhrM2ljRkJ4TTRhcm1vc0hUVjV2RGF6S0F3VVVKY2NZLUV5ZEhVcUo4V0xwd0d1ekJ1YlZseU9URjJicDdKRTBWOElvNUtKRUstdGRhMUVWRElPclN0SDRCS0JDOXFMbnFOS2fSAbIBQVVfeXFMT2VyY0hqR0VlQTYzYk5OVHd4eDBMMWJTYktHQ1NoRFVsMjhiUXFwc2ZJa1I1NHcwOEtBODFxdVE3T3F0NUZuMC1ieXEtT3o4SWQySnUtbi04TnE1dEE0SWpZR3AxejdIWVhZckRLdS1Ua3I2MWk1aFFGNnNrSk1reUtnU3V4c1NMOHp2Q3lQTmtvako5UU41bTQzY2JKdm9VcmNUZlpzcEtJT2lXeXZ3anBKQQ?oc=5" target="_blank">Zimperium’s Zero-Day Detection of Android Malware Using .NET MAUI Framework</a>&nbsp;&nbsp;<font color="#6f6f6f">Zimperium</font>

  • Android Malware Exploits a Microsoft-Related Security Blind Spot to Avoid Detection - TechRepublicTechRepublic

    <a href="https://news.google.com/rss/articles/CBMigwFBVV95cUxOY1hMLUtEdzQ1WUk0ZnVBUnFJSTBicEtfMElZb0NoeF9ySHlYd3B1YVRYd1Ezem1heHNoLURsRGFTNjZDREZoN3BfaEo1TG9ta2c0cVRoa3p5T28tU19aQkdTVXBYRFlhRkFUUVZKQ2s0anRfbTJsOVk3U0JJOEgwdGtfSQ?oc=5" target="_blank">Android Malware Exploits a Microsoft-Related Security Blind Spot to Avoid Detection</a>&nbsp;&nbsp;<font color="#6f6f6f">TechRepublic</font>

  • Hackers Are Using Microsoft’s .NET MAUI to Spread Android Malware - HackreadHackread

    <a href="https://news.google.com/rss/articles/CBMiigFBVV95cUxObEVxYnVwcjQ5QVo4MzV2MWtZWm1kQjZkR0tUTUxaWnlFVFlLTlEzb2kzUHYyRmVDb19nZC1oVUdMSmRTUlVlcUNvWkxvOXd6cUVUOFRWN3B4S0VCcEwzeS1EM05yajlCd3lQZXJlcGxhNWw3T3dvY2xwa3BHZDF4WWhjTTJEZkVsVXc?oc=5" target="_blank">Hackers Are Using Microsoft’s .NET MAUI to Spread Android Malware</a>&nbsp;&nbsp;<font color="#6f6f6f">Hackread</font>

  • Microsoft tool masks malware for cybercriminals - Techzine GlobalTechzine Global

    <a href="https://news.google.com/rss/articles/CBMimAFBVV95cUxPV0FIYnFCMVU4cnoySVdOMko1TXlqY28ySEhndzZTMUpPbGZYeFRBWVN3ZDM5QUNhV1hPZ1RuUndHZFlNdWt1V1EyOENFaHhqaXlESzNMX3RVQmJPMGFvUEp2SWNaQzlKNHRhNENQZ3hiTG1POHB1YmJ3SDVvb2hIYi1KY25tb0hkTzY5eU5XTUQyS2xVZzVBLQ?oc=5" target="_blank">Microsoft tool masks malware for cybercriminals</a>&nbsp;&nbsp;<font color="#6f6f6f">Techzine Global</font>

  • NET 10 Preview 2: Enhanced Reconnection UI, Improved Blazor Features, and Updates across the Stack - infoq.cominfoq.com

    <a href="https://news.google.com/rss/articles/CBMiZEFVX3lxTFB4dlRJSjBiMEdhanBkYzhLT3BkbjJfZFdvQkswTUVhaWctN3NpMVlnSmxXXzFqOXBjcG03anVnV2JzWUJjaDJPSEM4WllVSUdZelRvUTBBeTg4dmh6a05SSy02bE4?oc=5" target="_blank">NET 10 Preview 2: Enhanced Reconnection UI, Improved Blazor Features, and Updates across the Stack</a>&nbsp;&nbsp;<font color="#6f6f6f">infoq.com</font>

  • Hackers Use .NET MAUI to Target Indian and Chinese Users with Fake Banking, Social Apps - The Hacker NewsThe Hacker News

    <a href="https://news.google.com/rss/articles/CBMiggFBVV95cUxOa19mZ05Nd2JITUpaamNpdlZXUjFLZGFVZ0l1dmpobzY4YWFQcTFiSVlQRGJiU3AtcWI2ZWRNWHc2RllFamd3dmNVcVBOa0NUQ3B6b2JDV1VWRnlFNlJXbGR0bzQ5OU41QmVCc1pjdkl0UndkNmRMalZGVUc0emFJVU5n?oc=5" target="_blank">Hackers Use .NET MAUI to Target Indian and Chinese Users with Fake Banking, Social Apps</a>&nbsp;&nbsp;<font color="#6f6f6f">The Hacker News</font>

  • Android malware campaigns use .NET MAUI to evade detection - Security AffairsSecurity Affairs

    <a href="https://news.google.com/rss/articles/CBMiogFBVV95cUxOWHRaSGtrRGs2TTFBbGo2MXhGQkQyNzVOMUFTUGtLTnFnVDBGVXlKREVVLU1mMkJwSlp2aDZHWUh1T3V2MW5GZC1fY2dIMXB3SmZNaWZ1bDM4dDNxbXRoMjNfOUpubnRWOXlhYVMzNTF2SnpLTVlYQUZoMzExNEFrUnZRU3BROTNKWmVQQmxLZThUZG1jWEJ4TXo0ZkNhc3NjRmfSAacBQVVfeXFMTmFOM1J0MU90cEpIUERMX3pSSElOdjlDVzdUeF9aMExpX1ltQjNyVzFPc3d3Ql9KNG1TSUpWOGxKc2NFbUJXbnVtSTZXTnhmZW11X3hsRmtNLXhnbHRLZEVDMDZCWXk0MUFMWXRSeGNCLS15dGFLY3Ytbk1jcjJnNmxYVWM4WmYtUllMa281TXFnLVA3LTBYTXdQVVJnU3JZRzd1ZktNN1E?oc=5" target="_blank">Android malware campaigns use .NET MAUI to evade detection</a>&nbsp;&nbsp;<font color="#6f6f6f">Security Affairs</font>

  • New Android Malware Uses .NET MAUI to Evade Detection - Infosecurity MagazineInfosecurity Magazine

    <a href="https://news.google.com/rss/articles/CBMifkFVX3lxTE9WTGs4T0pmVl9EV2JJRFozTW05eXBOYmtxVDJoLWlyQm4zZ0JOUkVJWjN2eVlQVEtKQ2szeDYwVUhMVndhYUNwcWxPMS1xbzkzV0U4YlVCQ0JmQ2s0TlktV2Iwdnc4LURnYTBZYU9hODMtZ0Jfa1NFd1JlVUxlZw?oc=5" target="_blank">New Android Malware Uses .NET MAUI to Evade Detection</a>&nbsp;&nbsp;<font color="#6f6f6f">Infosecurity Magazine</font>

  • New Android malware uses Microsoft’s .NET MAUI to evade detection - BleepingComputerBleepingComputer

    <a href="https://news.google.com/rss/articles/CBMisAFBVV95cUxOc2xmSjU0bWRIWk5yc0dZRU5HWXlONDZJbEI0VUprZElxRmlmTHJZUl8yQWZYQXdDdXpVMmhjTHQwZXhnT1lUTkZ6bHFKN0pYTjlXVW5PWDNsRXVFNGNEUE5mU1NsNnJ2aVBReWNmUTQxZ25ENzBHZ0wyZGtsams0aEZkVFBmWnl4MXNXWTM4SjVwbWdIek1hd3VHNjlJQkhqOEZUdmdqZnBoZW16bGRsYdIBtgFBVV95cUxOQVFFR0ZYdG1vRkVZbW85dmhmZ1BzSkxQVGJuTU0xZ1BzcUZQd0U3eDI3MmVzN004c1NNS3dEQmJ0Qk82ai1GeXdoVU9BYWRjZ2dnQ2ZYWThrVENKNUF2VkRhckxVY0VQNkNHRXpRQUhQNWcwelFWOHgyTmN2SnQ2Tzk0Rzkzc1lSTUVmRU5ybFJld0tCZTVCQUh1ZVZXcl84NHIxdEh3aXg2THJ6QmZvNUdxblA0Zw?oc=5" target="_blank">New Android malware uses Microsoft’s .NET MAUI to evade detection</a>&nbsp;&nbsp;<font color="#6f6f6f">BleepingComputer</font>

  • New Android Malware Sneaks Past Security by Pretending to Be Real Apps - McAfeeMcAfee

    <a href="https://news.google.com/rss/articles/CBMitwFBVV95cUxNWTBJTVNTUGRpSTdfMzRXOHRHRTVzUGRoWlp6endPRGw2VDRTRG1USmRNenduQ1JiZm9MU3ozZkg5bnNMSGlGQXE0U2MweThhSHpBSjc2U2hyNTU1MV9TWTlkdl9obmxwWmI0VGtPQlE1cnk5TFJiVDlUcjJEVkdsUXhjeGllWTgtd2hpNm1aUzZJdlpfb1pnT3hFOHB3UmI2Qi1FMjVyOTVXLXdnODN3UmtuQU5vZ2s?oc=5" target="_blank">New Android Malware Sneaks Past Security by Pretending to Be Real Apps</a>&nbsp;&nbsp;<font color="#6f6f6f">McAfee</font>

  • New Android Malware Campaigns Evading Detection Using Cross-Platform Framework .NET MAUI - McAfeeMcAfee

    <a href="https://news.google.com/rss/articles/CBMi2AFBVV95cUxPUGdjR2JQZzhQWmJ6LWFNNGlXODVqN1lObzlmZnpjdy1ScTctYnU0Y3pucDZpQ0tpazAzd2U1dHMwLW5sUXc2NVBSNklyQlhRVi02M2RJRFRhNDBlRGYxWW44UkkzdWhXU0xmSTlwRmx1M2RkSFBqNUM1WEhhQlFjT0RlOGcyUk5ZcHFoMWVVb3RZY2lEUG9tdUJsS0tVOUpmZ2JjaDlsLUhPczhrR1JfNU0wUWFCMnJnYzVPTEZzU2FMNUIyODFNaFNSWmZPSTNTQ2J2WkxYOEg?oc=5" target="_blank">New Android Malware Campaigns Evading Detection Using Cross-Platform Framework .NET MAUI</a>&nbsp;&nbsp;<font color="#6f6f6f">McAfee</font>

  • .NET 10 Preview 2 Enhances Blazor, .NET MAUI - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMioAFBVV95cUxQYzVrbERRWXBFNF9NbGZ2cEFISWlPWksyLVdfNGZKeUlLVkNOUzFaWEJ3SExEOVlrS3pWaU1YOHRVdVlvaDBmaFBPLUZJUXRHVXg4TUpFMkhCTEVVa3Y3eHpjSVNRcFJLYkRvQ1c0OWM2M295c1dTSFFINzM0d0FTS3FhUTE5UFh3UmloV2JYaFVLT1BXMmh6b3Y2Q2VuSlh3?oc=5" target="_blank">.NET 10 Preview 2 Enhances Blazor, .NET MAUI</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • OpenSilver 3.2 Takes WPF Apps to Mobile with .NET MAUI Hybrid Integration - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMi1gFBVV95cUxOX2VBckhpMzNkR1R4QU1mWHFVZ2FlcUdlci16amlJbzNFdTFaNXkzRWF4dlhZcHloUlowSWNCRlBVU0xTbmxwazF4RlVPSXhYWThvNUIzLUZkcHkxZ05DcmRmcG1sdFZTQ01sYzlXbmJ0SWZIOGFYVElUTGE5cTBmZjdPa05saF9VQ3g1ZlI0V1BkUWRLTW1MVDBJbnZ4TFJhOU8wamprVDgyZEJFeXF6T1h3V2JFTmFQSHVmNWNHSTdpcDVrTEtuWkJQZDhGNTNuYWVpbVN3?oc=5" target="_blank">OpenSilver 3.2 Takes WPF Apps to Mobile with .NET MAUI Hybrid Integration</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • Diving Deep into .NET MAUI - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMiiwFBVV95cUxPeUpjS1hVd2ZhODdkS0RoYl9qRHEydUE4VC1rQnlTbjdJdXN4UVNrZEw5UF8zd1d6Z0lSUl9XbXBRQ1A0cTJoVGVJb3F5QXhZV0ZTZkhVMWtpRk9SVXFMZGJOX0V3amFac3B1d3ZEY1NVbUJ2RnVudVZoSjNYTDlkSGpURC1veDFwN2cw?oc=5" target="_blank">Diving Deep into .NET MAUI</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • 2025 ʻAipono Maui Restaurant Awards - Maui No Ka Oi MagazineMaui No Ka Oi Magazine

    <a href="https://news.google.com/rss/articles/CBMiakFVX3lxTE9FVkxad1NCT2dBZWdndzNQa2pQenFMcUk1RGJIRVhTaTFOVHBSMmFhTW5TbUNVaF9IdEFVcmdKTW5GdkNEdERuU3IyUTJjZ1VHbTVLT2xHQVlWY3U0Yk5rQnprbFRvcUIyeXc?oc=5" target="_blank">2025 ʻAipono Maui Restaurant Awards</a>&nbsp;&nbsp;<font color="#6f6f6f">Maui No Ka Oi Magazine</font>

  • .NET MAUI and Copilot - devmiodevmio

    <a href="https://news.google.com/rss/articles/CBMiWkFVX3lxTE05VF9PQlRNNmY2X1ltX3FXU3hPeVUtNzBhOEN5bjQyZWhCZTlLbEFhLTJvQmctNmppemJEYWZWMUhZUlJvbXUzcnFpeW1RMFYzbGhkWm1aRE9mQQ?oc=5" target="_blank">.NET MAUI and Copilot</a>&nbsp;&nbsp;<font color="#6f6f6f">devmio</font>

  • Syncfusion Open Sources 14 Controls for .NET MAUI - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMiqgFBVV95cUxQbE10ZktNMHRMWFd0dGxvcUZSWTZoaHI3czBYdGtNNFpJMDJ4WXN2NmhvUGdjaFJPU2JCQ3JHZGZQN244clFTMGZVdE9SbjVpMnBUYkVRVzJtYzIwdGJseUp6cGlJUG85a0o4UlkxQjBZQVpSRC04eUpITElqLXAxWGZLSW0zbmduODgwOXNDNmpNaGNGV1kyU3l5ZDQ5Ui1uNXVHSWtGM2RaZw?oc=5" target="_blank">Syncfusion Open Sources 14 Controls for .NET MAUI</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • .NET MAUI 9 Preview 7: Introduction of HybridWebView and Other Improvements - infoq.cominfoq.com

    <a href="https://news.google.com/rss/articles/CBMiakFVX3lxTFBhUHp1YlFSX3U2TmxlRWFEaGUxejFxcUxEU21RZEt2LXpEWWktd1dPVjAtdGJnUnVXNWxtVmhiMU9pTGY4MFhxLWpWemNYclNIUEtJNUliLUNyZWkzWXdZRnhqVEViQVFKbEE?oc=5" target="_blank">.NET MAUI 9 Preview 7: Introduction of HybridWebView and Other Improvements</a>&nbsp;&nbsp;<font color="#6f6f6f">infoq.com</font>

  • .NET 9 MAUI Preview 5: New Blazor Project Template, Android 15 Beta 2 Support - infoq.cominfoq.com

    <a href="https://news.google.com/rss/articles/CBMiZ0FVX3lxTE9UakVsODRqeXEzT0tzczJtc01HcmlqNENSblVsRGtpTUxMU2JsQmRhVWJTbEVJNGFLdFkzRDBTZ1kwZ0ZRd1ViZUlYMWFkcFRVcGJvV21OdUFsNVVQOTBidkRCTW42dms?oc=5" target="_blank">.NET 9 MAUI Preview 5: New Blazor Project Template, Android 15 Beta 2 Support</a>&nbsp;&nbsp;<font color="#6f6f6f">infoq.com</font>

  • .NET MAUI in VS Code Goes GA - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMigwFBVV95cUxPbmV6UzV6X3hIUG96cjdTaXpSa01MMjR3bHVkOEdQMjQtQW1ib1NKd2dDNy1uTmhHR1FFSTQ2bFl0MXltRG9UNzc3X3lCODc2WmY4MlY5bWltcFFzSm5NeEFwNXBRWV9UX2dhNXIxSjJlU2pIb2JPUy0wUHZPS1RBZElIdw?oc=5" target="_blank">.NET MAUI in VS Code Goes GA</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • Microsoft Releases the .NET MAUI Extension for Visual Studio Code - Thurrott.comThurrott.com

    <a href="https://news.google.com/rss/articles/CBMiogFBVV95cUxOVGZhMlBSQ2RneW1SaVljYWhfZ1cxYWxNNFhnNkh5U1pUMG1WaWxxV2hUcWJnVkl6RHF2dllQcDhpeEVEXzFzQ2ZrMk5LMFRyZ2RJZWtWbkZuNVdPXzg4YmZzdjMzUnBwMktPQXYzMWlNeE0zYUMwaDZaZVJQb2NIX19OX0M2RVNELUdSeXl4ZEpLTTJaWTg2NXU2bk9Zek95a3c?oc=5" target="_blank">Microsoft Releases the .NET MAUI Extension for Visual Studio Code</a>&nbsp;&nbsp;<font color="#6f6f6f">Thurrott.com</font>

  • XAML Hot Reload Comes to .NET MAUI in VS Code - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMiiAFBVV95cUxNWGZiVW5HOFRkZXphYklkbEV3VnpuaF9ibUZXNlhKY2lEWFNVYVF6WDFva1AyTm1uWUJBMEZGX1NobWJtOTdDd2tmOVlvVFQyT3ViSTFDR0JoSWViUXR4QnBiNE9ndU8xRlo3VGR0U1pVVVdtWGFYcnlKTkFBVURDN0FmUzZtUi1C?oc=5" target="_blank">XAML Hot Reload Comes to .NET MAUI in VS Code</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • Is NET MAUI the future of cross platform development - App Developer MagazineApp Developer Magazine

    <a href="https://news.google.com/rss/articles/CBMijwFBVV95cUxPR2gtRG5Zc2lHZUJwcFdET2s2V2xRTnZxWmRuenlmR0liWnBGYUVXSzdGRXZIWU5aQ3pxTHNuaTJqV00tQ09kZmRISTJPN0QwUkxweTdaWDlIdjdGbmRuRmRNY2lUaU5KeDhKeFRwVTNsRWNqd3I5dVYxcnJjZzU0WWtkaV9BZklpd1VETXZIZw?oc=5" target="_blank">Is NET MAUI the future of cross platform development</a>&nbsp;&nbsp;<font color="#6f6f6f">App Developer Magazine</font>

  • .NET MAUI Community Tookit Update Adds TouchBehavior - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMikAFBVV95cUxPQ2lwUzM5RnM1UHpWOEkxSERQNm1XbHZxdWJXNjBoaS15d05mUVVFRFBYUE9Bdk1BU00xQTU4TkZLazAxcjZkbGg2b0RSdmpoRFlGb0c5Rnlsa3dyTnpUMEdsVmVOa0F6Ti1Sa3oxNkRmLXZVa1VjZW1RWmtSRUVqaTF0QjM2OXZZNVVWVUlkZXg?oc=5" target="_blank">.NET MAUI Community Tookit Update Adds TouchBehavior</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • .NET MAUI Community Toolkit adds TouchBehavior support - InfoWorldInfoWorld

    <a href="https://news.google.com/rss/articles/CBMiogFBVV95cUxObFZyOEx4ODN4dTB0S2ZQTWFGLWw1V29QbTlsS3otUnFtV2x2SGcyYVptWlZ5THkyQlJMS2ZRaTV4YjNHRE9XTDVtOXEzNHJIclpDaXpOZG13cENFcThlMWZ5QVI1SXljc3I3Ym5sV29aTUNFeXpZbFR3ZkRlOXkyRUM4U29BX1NQSlppekhmb1Bva0h2TVUyNkxBcEt0eVFTc1E?oc=5" target="_blank">.NET MAUI Community Toolkit adds TouchBehavior support</a>&nbsp;&nbsp;<font color="#6f6f6f">InfoWorld</font>

  • .NET MAUI Community Toolkit 8.0.0 Brings Touch Behavior - infoq.cominfoq.com

    <a href="https://news.google.com/rss/articles/CBMiZEFVX3lxTE5SQUFBNVZ1RjlkT2dFYUhockxZbGRvMXRWc0RzSERYWjJiNVc3S0Jvak45eUZwNnN3MkkzVHFhNi04R2F1Vkk3RXFqRmJjdzNYZnh5VXoxcElla2ZUWEVRRmVuaTY?oc=5" target="_blank">.NET MAUI Community Toolkit 8.0.0 Brings Touch Behavior</a>&nbsp;&nbsp;<font color="#6f6f6f">infoq.com</font>

  • As Xamarin.Forms Nears End-of-Life, Uno Platform Throws Hat into Replacement Ring - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMiiAFBVV95cUxOX1k2T091Q1ZnOTY0WVhiWUxZYTQ2cGZnNWpyYU5Gc1gxLTdjbDc2Z1pXNEl0bjJnWGd6YWlXREtMMEdkVVZ3N21PbVNCOE5ZYW0yeEZCdjVUXzV5cHA5cGVLUU1vTXZ2TVdJY0VPOEF2djlNdEV5UEZHSWlGc2x0VGNGNW1QMkNh?oc=5" target="_blank">As Xamarin.Forms Nears End-of-Life, Uno Platform Throws Hat into Replacement Ring</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • Choosing the Right UI Framework for Native Windows Applications - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMieEFVX3lxTE5GUVUwT2RPdGViUDZvYzdfLVN5c2JiU0NvZlNHajVjUkhaTFFRYy03dUxLTXJ1VW5pcFEzVWRLM3FKbXp4MEt3eVVuVTdMY2ZPYUs5eDdKVWxDU0U5bDhyUnQzNXQ5bzA1dklDMnR4aUtCOEZMT3RyWg?oc=5" target="_blank">Choosing the Right UI Framework for Native Windows Applications</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • From Zero to .NET MAUI: Seeking One Codebase to Run Everywhere - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMif0FVX3lxTFA3a1JWdzV6ZjIyc0E1aU44WXpDMmRmTi1VcFd5bms2ZDNnenlQRjJBN21mM18zUlJNVzhZaEg3bGp6TUg4dHpEdFNpa0JLdVQ3dU9INWNrVUs5Nnp2dThhUjZzTXBkYm5lNVE1eDJ1dzIwT2Z2ZGdMSlBKaWczdWs?oc=5" target="_blank">From Zero to .NET MAUI: Seeking One Codebase to Run Everywhere</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • 12 Simple .NET MAUI Do's and Don'ts - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMiggFBVV95cUxPbmNZa2lxRzdPRU0zRnlqOGtCSUptR19OcjI4eWdSSFBiOXQyUnBkanJIZTg0dDREbTF0WnZENGdoTVYzMl9sYlJta1g3bFZGU2o2OGRxTl91SzdVSzF0bS1ndE9GSER0YWl0S0diTG8zdGhVNEg3RFkxQnZEdFlTU21n?oc=5" target="_blank">12 Simple .NET MAUI Do's and Don'ts</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • Is .NET MAUI the right Xamarin successor for you? - SD TimesSD Times

    <a href="https://news.google.com/rss/articles/CBMilgFBVV95cUxQWTJRcGNCM2UtX0ctLVVOZm9iUGVrQ1VtWEF0UjRKdmZMOHVkNS0tbXMxcDgxVG9xeXBpV2QwLUk2cjdZWER6NlJONDhGQ2lFNjd1cDdISm8tMmNpS25oM2dnSlQ5WTZsczlCbEU3RmJFUkNSWDJ4Z3dKTm9qWlNpekx6M2tvdGIzcldDNmh5QmtFb0tlb2c?oc=5" target="_blank">Is .NET MAUI the right Xamarin successor for you?</a>&nbsp;&nbsp;<font color="#6f6f6f">SD Times</font>

  • Visual Studio 17.9 Preview 2: .NET MAUI, C++, Remote Linux Unit Testing, Teams Toolkit and More - infoq.cominfoq.com

    <a href="https://news.google.com/rss/articles/CBMiakFVX3lxTFAwMkxIamcyRHRKLWsxNWpGZjdtNDh0NmNBaWlZcExFVTlzSmxrUGFzcWx5cmRKcmRsNFdsMHZfNkhxQllsZ1dMSEJqVzhJREQwVEllLV82dHo3dkpWVGJXZDk3V2tWTHRCQmc?oc=5" target="_blank">Visual Studio 17.9 Preview 2: .NET MAUI, C++, Remote Linux Unit Testing, Teams Toolkit and More</a>&nbsp;&nbsp;<font color="#6f6f6f">infoq.com</font>

  • Fixing Button CornerRadius in .NET MAUI - HackerNoonHackerNoon

    <a href="https://news.google.com/rss/articles/CBMibkFVX3lxTFBQWlo4eTlNNFlmdXh0OU05YWM4ZGlmb1FOS0NrWFdIcGQ1N2dVVFFwTWllSVBfcG1EclFZNUhWZEdWUl94bHJkZFQ4ZzNYY1R3TS1nbEMxYjNKQlQxMko1SW5KelQyWmVlOEVYRW9B?oc=5" target="_blank">Fixing Button CornerRadius in .NET MAUI</a>&nbsp;&nbsp;<font color="#6f6f6f">HackerNoon</font>

  • Here’s What’s New in .NET MAUI in .NET 8 - Thurrott.comThurrott.com

    <a href="https://news.google.com/rss/articles/CBMifEFVX3lxTE5idzhMUmZYeW90VE5jbGlzbTNuUHNhYUFwUHNYMWdlSnNFdzhFNlNfd2QyN3pBVHpNLWwyWkdZeWJnZ3JGVUdDWHZaZ2RhOVNTVndkZjBtbHZtQUpWcEF0RS1TZjl4U2xOdXdhZDVxQVJTa0lkaExrdHFWLUo?oc=5" target="_blank">Here’s What’s New in .NET MAUI in .NET 8</a>&nbsp;&nbsp;<font color="#6f6f6f">Thurrott.com</font>

  • What's New in Final Release Candidates for .NET 8, .NET MAUI, ASP.NET Core and EF8 - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMifEFVX3lxTE83ME9EcjlaeTVqWFFfMmZjX3U1VS1CMzc5ckVTZ2JfaGREZklkLUtLcVA2X2RJTVRfZUx3azZIUzZiMFBOY0ZFWHVfOVcxYzFtWlFCamRTUUwzbVV4Vlo4ZG1heDhTaTVuNkJsbFl6cUZHTGJuWUJoRVVUVFU?oc=5" target="_blank">What's New in Final Release Candidates for .NET 8, .NET MAUI, ASP.NET Core and EF8</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • New .NET MAUI Docs Detail How to Migrate from Xamarin.Forms - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMie0FVX3lxTE1hai1BT0hsajFkbzhSLXdCdElCRTVoYVY1RVlHeVBpZ3dsT0RDa2FQRW9WQ1Fmbm9qVHZXLWstWVBmZDdiaExHMXBHUkFMWDVDUzhXYkxiT1lmMUF3RURyaDI5YWplX1dqSDZzWXRGNHVLczRVV0VEamRWaw?oc=5" target="_blank">New .NET MAUI Docs Detail How to Migrate from Xamarin.Forms</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • After Killing Visual Studio for Mac, Microsoft Reassures Fearful .NET MAUI Devs - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMid0FVX3lxTE5ncHNlM0ZraS1KVzJTT3Z2dzJyemQwNjMwTV94cmNocGRTbU1FcnhsLTNjc2JqeE12cHQ0d0R3bnZCb1dkRHN2RlpYQk43UTFSVnBXZnUxV1o1SUhIVm45WmVmU3FMeHI5Mi1CenlyNWJ2V3FGelBF?oc=5" target="_blank">After Killing Visual Studio for Mac, Microsoft Reassures Fearful .NET MAUI Devs</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • .NET MAUI in .NET 8 Preview 7 with Keyboard Accelerators, Fixes and Improvements - infoq.cominfoq.com

    <a href="https://news.google.com/rss/articles/CBMiaEFVX3lxTE9lbTRYLVQ1ZkF0RHprdWtqVDh0Qm1WdFNESWY2c1JvcWJxR0p3bkRQbnpRNUJXVjZ2MDA2QVhVVk9vYnFuTDNmMnpVR3ZBYWx1SFp5Qi0tOGdZd3BHRXd1UHhJRmpjWGk4?oc=5" target="_blank">.NET MAUI in .NET 8 Preview 7 with Keyboard Accelerators, Fixes and Improvements</a>&nbsp;&nbsp;<font color="#6f6f6f">infoq.com</font>

  • The Magical Nai‘a of Lāna‘i - Maui No Ka Oi MagazineMaui No Ka Oi Magazine

    <a href="https://news.google.com/rss/articles/CBMiZkFVX3lxTE5WOUFlNXBiN003Y21rYktQdHExclQwSktjS0JPeERmNWk0ZmpBMXRoZThKNkpUYmI4UFRuZGloN1pOajgwMkxMRUJGNU1sWnNaMkdjWmJMc2FFR3NnZlJzMkhYQ0UxUQ?oc=5" target="_blank">The Magical Nai‘a of Lāna‘i</a>&nbsp;&nbsp;<font color="#6f6f6f">Maui No Ka Oi Magazine</font>

  • .NET MAUI in .NET 8 Preview 5 Available: Bug Fixes and Performance Improvements - infoq.cominfoq.com

    <a href="https://news.google.com/rss/articles/CBMiX0FVX3lxTFB0ZFUwUXoxV0Jtb2RpWDJaV25zcjR0UmxFNFo3ajIxdVY5SktGRkRzdG05eFZkQVpRcW5Ra2M3TENvRVVFcDNiZmR0RVk4RlJBQ1l2YlRnR1dVcnA4MGxJ?oc=5" target="_blank">.NET MAUI in .NET 8 Preview 5 Available: Bug Fixes and Performance Improvements</a>&nbsp;&nbsp;<font color="#6f6f6f">infoq.com</font>

  • Migration from Xamarin.Forms to .NET MAUI - devmiodevmio

    <a href="https://news.google.com/rss/articles/CBMiakFVX3lxTE9ITkFWblJINWNsb1FEczFpYWNXS0NHYUx2Rm5PSjZDQWZkdEpzQ0JDX3p3VVY3aEttNWVRTXhsWDlRUTU4eG9Vd2ljVWdUekRMb29idmhVZ1pEY1VJZWhhWDhlVzhra2JZdnc?oc=5" target="_blank">Migration from Xamarin.Forms to .NET MAUI</a>&nbsp;&nbsp;<font color="#6f6f6f">devmio</font>

  • Shorter Development Times With the .NET MAUI Community Toolkit - devmiodevmio

    <a href="https://news.google.com/rss/articles/CBMiZ0FVX3lxTE5jU3BUeWZ5bVdURUptaDdjMmpubmo3dFI4emZLSmo5RFNFNkpjbV9iWllUT3hjVFhSeXV4MzVrT1FDVmtrVGlBUGxrb3NrMTh2bU4tODlGaFV1NUxLdzEtUTdmWUV4NFk?oc=5" target="_blank">Shorter Development Times With the .NET MAUI Community Toolkit</a>&nbsp;&nbsp;<font color="#6f6f6f">devmio</font>

  • Paradise App Development With .NET MAUI - devmiodevmio

    <a href="https://news.google.com/rss/articles/CBMiYEFVX3lxTE1wYmVVU0tucWpsVzdIMHhYM0E0dnhVMTJfbGVFVlhYR1NZQml0V3pPUDVlVGdTaG5JV1RxVVhPZWhLNFoxX1M2N2wyclpsbHdqUWZUQzgyMTdaMEllQjA2Zg?oc=5" target="_blank">Paradise App Development With .NET MAUI</a>&nbsp;&nbsp;<font color="#6f6f6f">devmio</font>

  • .NET Upgrade Assistant Now Works with .NET MAUI, Azure Functions - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMihgFBVV95cUxNeF9NYVpHRG1SWlhfbmhVeGtTUnZseHZuYXBkLTFyd1N6R0Y3SDFiSjhnTkVvQm5sbl82MHQ5a210QXdJT1BpdmVQNU9qNWo5ZlZraHFKc0xFOElrN2NpSmdUTkhEOXVibVNDcWFuQlN5VmtoR3BnS19sMjVaMlYwbENSRWRzZw?oc=5" target="_blank">.NET Upgrade Assistant Now Works with .NET MAUI, Azure Functions</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • Creating a Books Tracker App with .NET MAUI and Supabase - HackerNoonHackerNoon

    <a href="https://news.google.com/rss/articles/CBMihAFBVV95cUxOdnhKVm0tbWhHUllfVUZiLXR2N0xvSDlQZ215dEV0WjZndS1wV3VZejdSeTdMZXhYbXIyVlh4Wm40TDE3SXhxY09uMDRQbDVvX29mSmRKQVJsTEpYZUUySUdMTUNzejUyR29hZHF4em1CVkVCMGpVbXp0Y0xBR3EzSXdrN0o?oc=5" target="_blank">Creating a Books Tracker App with .NET MAUI and Supabase</a>&nbsp;&nbsp;<font color="#6f6f6f">HackerNoon</font>

  • VS Toolbox: MAUI App Accelerator to Jump-Start .NET MAUI Scaffolding - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMihAFBVV95cUxPbXQxVnM5V0VoZzROYzc3bmo2dnFRT1luSldHbS1TY0pLOERMa3E5TEMzaVBRdURERjA3ZUNvNkc1dER3SnMzTjFGRS1vN1ZCSi1sUTYtSUF0bnJqY0lpcF9QeUpOTy1QSm1XY0lsZEp1ekI5QUdhMlJfZjdKNnZfYTBfRlU?oc=5" target="_blank">VS Toolbox: MAUI App Accelerator to Jump-Start .NET MAUI Scaffolding</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • What .NET MAUI Can Do for Frontend and Web Developers - The New StackThe New Stack

    <a href="https://news.google.com/rss/articles/CBMiggFBVV95cUxQR3I2a01xQ2VJYi1KeGhQdVFmVFZWTW5qT1hKZ2VfTnJSZkNVNHM4WDRSc01YVFFWckRFa1hubks3RkY2QXppaWIxVmpkc1Yxa0hubGgyQVl5MUowQl9HTjZKWWg5Y2NXZzR0RGdpcEd3XzNCRnJwSGJRVE1hQTFkZzJ3?oc=5" target="_blank">What .NET MAUI Can Do for Frontend and Web Developers</a>&nbsp;&nbsp;<font color="#6f6f6f">The New Stack</font>

  • NET MAUI and the end of IE - App Developer MagazineApp Developer Magazine

    <a href="https://news.google.com/rss/articles/CBMibEFVX3lxTE5KUWt3bkNWOTVNXzl5dGp5WG8wSG9kbjBoaWhfMFdxdE1QcUhTVlI1ck1JRGtCVTlGYWVkVWxLS0toMW9Pc0pmTGdSTWZwUGdCZHM0VWd4amF1eFFzb0dGdE9oY3owdm1wMndFeg?oc=5" target="_blank">NET MAUI and the end of IE</a>&nbsp;&nbsp;<font color="#6f6f6f">App Developer Magazine</font>

  • Next .NET Conf to Focus on .NET MAUI - Thurrott.comThurrott.com

    <a href="https://news.google.com/rss/articles/CBMiekFVX3lxTFAwUG91Z1RsUEszUzRaM1o4OGFrb05xR1hqLXJYa2F3alc2NnhpaGhlZ3k1MUkyckxwWERldEpOc1hIY0VIWURsWmgwYjUtSDBrdjA1N2t5LXpvTlFPX2RFTFYzUjd6Nnh3T2g3bnMtYUNYbGdHRlZTNFhB?oc=5" target="_blank">Next .NET Conf to Focus on .NET MAUI</a>&nbsp;&nbsp;<font color="#6f6f6f">Thurrott.com</font>

  • .NET MAUI Devs Wrestled with iOS App Size, Android Startup - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMihAFBVV95cUxOVXI5S0o2YkhLX3A3SExHa0VBdTlNRWwwWGQ4UGFFQzNXc3NTQW5LT3BRNDN2V3VOV2pZejRINS1lR0t5NktvaldYUnNPTktDQXY5MDZBWmstQ3ZFNTlmaHV1S0EzUU1NMHFWOWZzWEFZRDZzd2E3cEEyZlhlcWt3OGR1M0U?oc=5" target="_blank">.NET MAUI Devs Wrestled with iOS App Size, Android Startup</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • Long-awaited .NET MAUI is now available - SD TimesSD Times

    <a href="https://news.google.com/rss/articles/CBMickFVX3lxTE9rUFJqY09aUldQT2taLVJ4ckNwZ0lRZW5OZlJnalB5emhudnNLT3JKSUZjUkc3ZWRyOHlKVlFpR3ZqUnJIZ1RJWUhzUmtyVGRTQXlUaVR3VHloNzNHWDRCR2RSanlTNEtaN2xVcUhtYjM3QQ?oc=5" target="_blank">Long-awaited .NET MAUI is now available</a>&nbsp;&nbsp;<font color="#6f6f6f">SD Times</font>

  • .NET MAUI Reaches General Availability, Replacing Xamarin.Forms - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMieEFVX3lxTE9yZnczNUZCV25jdGZxc3Q0eDEzZ2d1TXZfbDdoRmlGYlR5TzdOTi1yaWJzZ3V0ZmtxdUlTUUZEeWtkWnZkR1oyZ3RQQzBfN2ljUGNYUmxOT2M0LVNudl9CUmZ5cU8xcS1Wb3pZejRaLWd3d1dDQjh0Wg?oc=5" target="_blank">.NET MAUI Reaches General Availability, Replacing Xamarin.Forms</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • Build 2022: .NET MAUI is Now Generally Available - Thurrott.comThurrott.com

    <a href="https://news.google.com/rss/articles/CBMiigFBVV95cUxQVWI3UXdRRU9oSDZTSzFNSC1NU1lHTkhWb3FvWHhFUGpielhQeXR6X2ZMbExzTFMyamxnZF9rT1NYOTdmd2pNREkwUGFYZ3JpdFVZSW9kN01Ec1NWbWExWmc5VDhZMld1MThRRXBtNFNfbngwaHowLWJzSTktZDN2bk96bXd0RUg5OFE?oc=5" target="_blank">Build 2022: .NET MAUI is Now Generally Available</a>&nbsp;&nbsp;<font color="#6f6f6f">Thurrott.com</font>

  • .NET MAUI Finally Replaces Xamarin in Visual Studio 2022 17.3 Preview 1 - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMieEFVX3lxTFByMlZ2R29QT3EzeGhhNDMtaVdrM1ZNcWZlUVNUNWdqLU5ZZWdsUm1ITXlYYTN0N19GM0NfSmk4SEtNN3g0SHp6cXBxdlNCd29FRFQxSjJZdzhCaGRQa0JJeTMwZ1BZMWxxbnhiQzVHcVIyZ3JzTWd6bw?oc=5" target="_blank">.NET MAUI Finally Replaces Xamarin in Visual Studio 2022 17.3 Preview 1</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • With New Windows Desktop Support, Flutter Throws a Dart at .NET MAUI - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMigwFBVV95cUxObF9XQWtQS3ZYWE1DV3l0VzdpclA1cEN1SVUxZmVFUl9VbjBwYjFMUm5rYjE4Z0FLNGxsRnVfaktrajU5ZElOUlFrQXQwOHNvQkJKa0pWWTBOQmZlSE0tR1JWaVByM3JOSERPU2dtQktlQzlnQk9mNVlaaDdDbzFGNmpGTQ?oc=5" target="_blank">With New Windows Desktop Support, Flutter Throws a Dart at .NET MAUI</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • .NET MAUI Preview 12 Focuses on Quality/Stabilization, Boosts Shell Navigation - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMifkFVX3lxTE1paGVsMjhQZVY1WjhCVFlSOE0yNkdoUU9pTFJjN19WZEVuM1BlZWVhNW5NVHIyNlczejllclVJQlpfbEE3ZzU4ZWFnV2FXRnBHV1VHZWZRTlQxWkk3MWtzT0NXMUpDQjljU0UtZVlZamVmNDdpbHFpdEw4dXlRZw?oc=5" target="_blank">.NET MAUI Preview 12 Focuses on Quality/Stabilization, Boosts Shell Navigation</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • Edit Local Images/Text from a .NET MAUI Blazor Hybrid App - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMie0FVX3lxTE9sTmdrUkRwaG1VS2JHY3VuT3NiQ2FhaGdaWl9HWE5nUlJFdS1CLTRYRmtJWkVVdFZESV8zU2tNb0gwczQyYzJpOEpnNDdNcGhCdEZmMVEzbjZxUnFqM2stU1FUSDBSOEpIS215X1J5a3RjRFBaeDZObUlBQQ?oc=5" target="_blank">Edit Local Images/Text from a .NET MAUI Blazor Hybrid App</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • .NET MAUI Preview 11 Adds Windows 11 Fluent UI Control Styling - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMigwFBVV95cUxPdlo3U0RBeFVjWEo0UEU4Ykg0aGlCWXBDVklHQ3M2RlN5SmhGajZ6TTJYcFhTcEpYR3pEWVY4WGhWMHJKTjlZbWpIVEZ0S0pqWlhoMjd1M1BCa2RiYkVXM29HVEJZWmlmTEZFU0tYaXpSY29ZMk1Ldnp0ZUZtck1lZVk5MA?oc=5" target="_blank">.NET MAUI Preview 11 Adds Windows 11 Fluent UI Control Styling</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • .NET MAUI Adds New Layouts - i-programmer.infoi-programmer.info

    <a href="https://news.google.com/rss/articles/CBMihAFBVV95cUxObVRfRjR6RlRMYXhDdUdrZ2dja1REUDJONk5EU2JPbmhPYmhoMTl1VGFBTUI1MzFoSjBrSXNHRi1OZGw5YmFRbDlpVjJ6MFdTdVVuLUlaUHVza25yazRzT0ZfQmhwSWY5aXU4eGtzaUdPejQ3X09WVGZ5UTNTelR6dFRlakw?oc=5" target="_blank">.NET MAUI Adds New Layouts</a>&nbsp;&nbsp;<font color="#6f6f6f">i-programmer.info</font>

  • Microsoft Replaces Xamarin Toolkits with New .NET MAUI Alternatives - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMie0FVX3lxTE95SkU5cWJ0d194bGlwdks0NkV5Z0p2ZDJkbzVXUjRRcDZMNG03RnZFenZYVWxXYkpVNzJmY1p3Z2piM3BOWUIyRnAxUFpOcHY4cGJ5TnpaaXVwSXNobi1yZXpaRWg2ajJRZVNzX3F5a21SWmJ2MDB0dHpWNA?oc=5" target="_blank">Microsoft Replaces Xamarin Toolkits with New .NET MAUI Alternatives</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • New .NET MAUI Workload Installation Detailed in 'Final Xamarin Podcast' - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMihAFBVV95cUxNNmI5TTJiRVdmXy11cU1UT3cwb1RROGNHMjRSUU05V0tUUFIwZ0xfTjh5UFNHeGI4NTdfTE0wUi1veGJMZUIzSGk4dElaNmEzTUdMc2Y3LWczSXN2YzYxUFlZc2QyT0N0bWFLWWZlQkd5bERpQk82ZUFzS3VfcDA2anVmS3g?oc=5" target="_blank">New .NET MAUI Workload Installation Detailed in 'Final Xamarin Podcast'</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • .NET MAUI Now Works for All Supported Platforms in Preview 4 - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMiggFBVV95cUxPb1JkVTJGTTEyUlg4X1N2RE13YmFpcndDNTFmOVVmbDhrRF93b2I2LWR6Q0cyTi1aVnBjVEh4alpDM2ZzbzZtWWlsMU9FNzNDWFcyUXRjRDFTcGtpeTdlSS1xVFJ3WmdvYlhtSXg4WGJlc3M4Qkc2d3BUZHFmeUFqWTNR?oc=5" target="_blank">.NET MAUI Now Works for All Supported Platforms in Preview 4</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • Hands On: .NET MAUI Desktop, Hot Reload, Blazor WPF/WinForms Controls in .NET 6 Preview 3 - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMiekFVX3lxTE1PM0t2ZFItcUEycXdCZElSSFZ4RW13TG5UcVNvNGdkZGdnLVRDVHE0Y1o1OEVFbXdJcDl1Qkh3cWd5Q3VYQkZBd1VNekxQaDh0WjNHNms3ZW8tS3JGajQyT1hKWnRzN1d4Tm1nZHNOeVpILV9qaEZ6Um13?oc=5" target="_blank">Hands On: .NET MAUI Desktop, Hot Reload, Blazor WPF/WinForms Controls in .NET 6 Preview 3</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • .NET MAUI (Mobile/Desktop) with VS Code? It's Complicated - Visual Studio MagazineVisual Studio Magazine

    <a href="https://news.google.com/rss/articles/CBMifkFVX3lxTE5Qb05pWXZtdFc4Y2RWQXNWcHRoUUVveV82U1QxdV9nWHBRZzM3QmhKQTh2UGpFaEt6RHB3UEtCVzBRYmlJeHpaUGVJYTl2Z0lTY3l2S29uRk1CY3ZPTHJvdDE5OWVNN1E5MmdKQUR5M2ZsRnBPS05vSTMzMlJRQQ?oc=5" target="_blank">.NET MAUI (Mobile/Desktop) with VS Code? It's Complicated</a>&nbsp;&nbsp;<font color="#6f6f6f">Visual Studio Magazine</font>

  • MAUI: a Multi-Platform App UI for .NET - infoq.cominfoq.com

    <a href="https://news.google.com/rss/articles/CBMic0FVX3lxTE5UamRpRlNVMlVwZlBUakJKdFVQajRoN2hEZzZndkdqSjUxc0FDTFN1Nm9uRHRtNVBHS3AweTNHRFNNVHZIWVlMcld4LXJja0VYSnZzcDJqR1BqU216aktZdjhFLWNaOXBHTXoyaHhsLWZFR1k?oc=5" target="_blank">MAUI: a Multi-Platform App UI for .NET</a>&nbsp;&nbsp;<font color="#6f6f6f">infoq.com</font>

  • Microsoft unveils .NET MAUI for cross-platform apps - InfoWorldInfoWorld

    <a href="https://news.google.com/rss/articles/CBMingFBVV95cUxQMkNIV3YyR1ZEaUtXVXl5Uk85dkQ1clFNaFJKSUE4MFo0am1ndEtSWEJBWEx6NVdLOGxDMUNCdlVBWHBuOUdUelpwa0trb1o1YmlISHdqdEd5Q1VuajJHczdLQWhQelB2aFNQbnNqV2ctbmMyYkFIWDV6RldmTy1qY2V4T2o5ck04ZE9ZY2pwYnhrUUoyVFppZG5IOTRXdw?oc=5" target="_blank">Microsoft unveils .NET MAUI for cross-platform apps</a>&nbsp;&nbsp;<font color="#6f6f6f">InfoWorld</font>

  • Cultured Fellow - Maui No Ka Oi MagazineMaui No Ka Oi Magazine

    <a href="https://news.google.com/rss/articles/CBMiX0FVX3lxTFBTbE94ek9iQndjSnhkRkxBWTZlano2dFlEeUFwY1BSQUtnNWhfYVMwNkQ1SmZfYUpqc2ZRVmNjdzAxUVhjM2NpU2x5REU4Yk5SSXA1S3Z6SXJvbHY0eVZF?oc=5" target="_blank">Cultured Fellow</a>&nbsp;&nbsp;<font color="#6f6f6f">Maui No Ka Oi Magazine</font>