Bringing Blazor to Desktop and Mobile with MAUI

Bringing Blazor to Desktop and Mobile with MAUI

I wanted to host a Blazor WebAssembly application natively as a desktop application, and to achieve that, I planned to use a MAUI Blazor app. However, I wanted to avoid duplicating the Razor pages between both of my projects since I intended to continue using the web version as well. In this blog post, I will show you how to accomplish this. Consider using this approach to host your SaaS application in the cloud and simultaneously offer support for a native desktop app, much like Slack. ...

September 24, 2023 · 6 min · Mohamad Dbouk
Tic Tac Toe Game with Blazor WebAssembly

Let's Build a Tic Tac Toe Game with Blazor WebAssembly!

Hey there, fellow developer! In this tutorial, I’ll walk you through building an awesome Tic Tac Toe game using Blazor WebAssembly. So grab your coding gear, and let’s get started! To check the full source code, you can visit github/mhdbouk/tictactoe-blazor. Step 1: Set Up the Blazor WebAssembly Project First things first, we need to set up a new Blazor WebAssembly project. Do your thing with the command line or your favorite IDE like Visual Studio or Visual Studio Code. Get that project ready for some Tic Tac Toe action! ...

August 29, 2023 · 9 min · Mohamad Dbouk