Skip to content

Instantly share code, notes, and snippets.

@sthewissen
Created January 17, 2022 13:18
Show Gist options
  • Save sthewissen/417fa7b0aff397b8bb99d2e3bd0f423a to your computer and use it in GitHub Desktop.
Save sthewissen/417fa7b0aff397b8bb99d2e3bd0f423a to your computer and use it in GitHub Desktop.
using Microsoft.Maui;
using Microsoft.Maui.Hosting;
public static class MauiProgram
{
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp<App>()
.ConfigureFonts(fonts =>
{
fonts.AddFont("ComicSans.ttf", "ComicSans");
});
return builder.Build();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment