Photino brings some benefits: - The initial memory usage seems to be lower than MAUI - Build times are reduced - Potential support for Linux - The Photino.Blazor.CustomWindow package allows us to have a custom window frame The project has been converted to use Photino. If it needs to be moved back at some point, it probably wouldn't be very difficult. The window chrome in this verison has been heavily customized for stylistic purposes.
11 lines
No EOL
409 B
Text
11 lines
No EOL
409 B
Text
<Router AppAssembly="@typeof(Program).Assembly">
|
|
<Found Context="routeData">
|
|
<RouteView RouteData="@routeData" DefaultLayout="@typeof(UI.MainLayout)" />
|
|
</Found>
|
|
<NotFound>
|
|
<PageTitle>Not found</PageTitle>
|
|
<LayoutView Layout="@typeof(UI.MainLayout)">
|
|
<p role="alert">Sorry, there's nothing at this address.</p>
|
|
</LayoutView>
|
|
</NotFound>
|
|
</Router> |