MAUI: Passing Data Across Pages
.NET Multi-platform App UI (.NET MAUI) is a framework for building modern, multi-platform, natively compiled iOS, Android, macOS, and Windows apps using C# and XAML in a single codebase. This uses XAML for building an interactive User Interface. In this article, we will build the application where we will see how to navigate across pages and share data across pages. The .NET MAUI is for developers who are interested in writing C# and XAML-based cross-platform applications. This helps to share UI layout and design with the same shared codebase across platforms. Figure 1 shows the MAUI apps' code-sharing Figure 1: The MAUI Apps Code Sharing Figure 1 shows that the MAUI allows us to build cross-platform apps for desktop and mobile. More information can be read from this link . In this article, we will see the implementation of navigation across pages and passing data across them. The MAUI provides several controls (aka UI elements) for creating application UI using XAML a...