Part 2: Implementing .NET MAUI Blazor
In the second part of this book, we will learn how to build a .NET MAUI Blazor Hybrid app. Blazor is a single-page app (SPA) framework that uses Razor components as building blocks. You might have heard of other SPA frameworks, such as React, Angular, Vue, and so on. Most SPA frameworks use JavaScript, but Blazor uses C# instead of JavaScript. Blazor can also be used to build the so-called Blazor Hybrid application. In a Blazor Hybrid app, Razor components run natively on the device using an embedded Web View control so that the Blazor Hybrid app can access device features in the same way as a native app. We will re-build our app as a Blazor Hybrid app in Part 2. There are four chapters in Part 2.
This section comprises the following chapters:
- Chapter 7, Introducing Blazor Hybrid App Development
- Chapter 8, Understanding the Blazor Layout and Routing
- Chapter 9, Implementing Blazor Components
- Chapter 10, Advanced Topics in...