description |
---|
Describes how to setup a MauiReactor project |
MauiReactor provides a convenient dotnet project template you can install to easily create a new dotnet maui project with MauiReactor bindings:
dotnet new install Reactor.Maui.TemplatePack
To create a new project just issue
dotnet new maui-reactor-startup -o my-new-project
To build the project just move inside the project directory and run the usual dotnet build command like this (in the example below we'll use the android target, the same applies to the other targets too of course: net8.0-ios|net8.0-maccatalyst|windows10.0.19041.0):
cd .\my-new-project\
dotnet build -f net8.0-android
To run the app under the Android platform execute the following command:
dotnet build -t:Run -f net8.0-android
You can run the ios app under MAC with the command:
dotnet build -t:Run /p:_DeviceName=:v2:udid=<device_id> -f net8.0-ios
where the device_id is the Guid of the device that should be targeted. To find the list of available devices with the corresponding IDs, run the command:
xcrun simctl list
MauiReactor also provides a Hot-Reload console program that automatically hot reloads the project you are working on as you save changes to any file.
To install it, just type the following command in the terminal:
dotnet tool install -g Reactor.Maui.HotReload
If you want to upgrade the tool to the latest version run the command:
dotnet tool update -g Reactor.Maui.HotReload
MauiReactor hot reload can work in two different modes: Simple and Full
{% hint style="info" %} Simple Mode (Default): This allows you to hot-reload the app as you save changes to the project. It's faster than Full Mode because it uses in-memory compilation but has some drawbacks:
1) Debugging is not supported: so for example, if you set a breakpoint it will not be hit after you hot-reload the app.
2) It's unable to build XAML files; so if you're planning to link XAML files for resources (like styles, brushes, etc) you may need to switch to the Full mode.
Full Mode: This mode uses the full-blown MS Build task to build the project after a file is changed/renamed/added. It's slower than Simple Mode but you can thoroughly debug your app even when you have hot-reloaded it. Also, it works better if you have XAML files or references to managed libraries in your project. {% endhint %}
To start the hot-reload console in Simple Mode:
dotnet-maui-reactor -f [net8.0-android|net8.0-ios|net8.0-maccatalyst|windows10.0.19041.0]
This is the command to start it in Full Mode:
dotnet-maui-reactor -f [net8.0-android|net8.0-ios|net8.0-maccatalyst|windows10.0.19041.0] --mode Full
This is the typical startup messages from the hot-reload tool:
MauiReactor Hot-Reload CLI
Version 2.0.19.0
Press Ctrl+C or Ctrl+Break to quit
Setting up build pipeline for TrackizerApp project...done.
Monitoring folder 'C:\Source\github\mauireactor-samples\TrackizerApp'...
{% hint style="info" %} MauiReactor hot-reload keeps listening to file changes in the directory but doesn't run the application: you need to open another console to run the application or run/debug it using an IDE like Visual Studio. {% endhint %}
{% hint style="warning" %} Under MacOS, ensure that your app is NOT executed in "sandbox mode" otherwise, hot-reload won't work.
Go to Platforms->MacCatalyst->Entitlements.plist and set/update this value:
<key>com.apple.security.app-sandbox</key>
<false/>
Please note that before publishing to the App Store this value must be set to true again. {% endhint %}
{% hint style="info" %}
You can also hot-reload applications running in an iOS emulator using Windows and Visual Studio: use the -h/--host
command line arguments to set the remote Mac host.
For example:
dotnet-maui-reactor -f net8.0-ios -h ip-of-the-mac
For more info on how to debug iOS applications from Visual Studio under Windows please get a look at the .NET MAUI official documentation:
https://learn.microsoft.com/en-us/dotnet/maui/ios/remote-simulator?view=net-maui-8.0
{% endhint %}
Since version 1.0.116 MauiReactor also supports .NET built-in hot-reload. This feature is enabled by default when you call the EnableMauiReactorHotReload()
method on your application builder.
To enable the hot-reload for MAUI projects and an updated list of supported edits please look at the official documentation here.
After you have installed the dotnet project template you should see it in the Visual Studio project creation dialog:
Select the MauiReactor based app template
After you have installed the dotnet project template you should see it in the Visual Studio project creation dialog:
{% hint style="warning" %} Microsoft has deprecated Visual Studio 2022 for Mac. To create a .NET MAUI application on Mac please get a look at the .NET Maui extensions for VsCode (https://devblogs.microsoft.com/visualstudio/announcing-the-dotnet-maui-extension-for-visual-studio-code/) {% endhint %}
Select Other -> Custom -> MauiReactor based app
{% hint style="info" %} Hot-reloading of an Android application requires the presence of the adb tool.
Check the adb tool is installed and working by listing the device list with the command:
adb devices
If the command is not recognized then you could install it with brew
:
-
Install the homebrew package manager if not installed
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
-
Install adb
brew install android-platform-tools
-
Start using adb
adb devices
{% endhint %}
It's fine to start from a standard MAUI project template: below we'll see what is required to migrate a brand-new project to MauiReactor. This short guide also helps to make a port from an existing MVVM project to MauiReactor.
Include the latest version of the MauiReactor package (select the latest version):
<PackageReference Include="Reactor.Maui" Version="2.0.*" />
Even if not strictly required, I suggest removing the ImplicitUsings directive in the csproj file:
<ImplicitUsings>disable</ImplicitUsings>
and add a GlobalUsings.cs file containing these global usings:
global using System;
global using Microsoft.Maui;
global using Microsoft.Maui.Hosting;
global using Microsoft.Maui.Graphics;
global using MauiControls = Microsoft.Maui.Controls;
This will avoid problems with namespacing conflicts between MAUI and MauiReactor.
Remove the file App.xaml, AppShell.xaml, and MainPage.xaml (including the code-behind files).
Create a MainPage component: add a HomePage.cs file in the project root folder with this code:
class MainPage : Component
{
public override VisualNode Render()
=> ContentPage(
Label("Hi!")
.Center()
);
}
Finally, replace the Program.cs main content:
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
builder
.UseMauiReactorApp<MainPage>()
#if DEBUG
.EnableMauiReactorHotReload() //enable hot reload only in debug
.OnMauiReactorUnhandledException(ex =>
{
//log any MauiReactor error to the console (replace with your favorite issue tracker)
System.Diagnostics.Debug.WriteLine(ex.ExceptionObject);
})
#endif
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-SemiBold.ttf", "OpenSansSemiBold");
});
return builder.Build();
}
When the app is hot-reloaded, a new assembly is compiled on the fly and injected into the running app. This means that the new component lives in a different assembly from the original one. It's recommended to follow these best practices to avoid type mismatch issues:
- Component state class should contain only public properties whose types are value-type or string.
- If you need a component state with properties other than value-type/string (i.e. classes), host them in a separate assembly (project) so that it's not hot reloaded.