-
Notifications
You must be signed in to change notification settings - Fork 4
Introduction
Gulam Ali H. edited this page Jun 5, 2025
·
1 revision
FreakyUXKit is a lightweight and customisable UX toolkit for .NET MAUI
Add our NuGet package or
Run the following command to add our Nuget to your .Net MAUI app:
Install-Package FreakyUXKit -Version xx.xx.xx
Add the following using statement and Initialization in your MauiProgram:
using MAUI.FreakyUXKit;
namespace Samples;
public static class MauiProgram
{
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp<App>()
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
});
builder.UseFreakyUXKit();
return builder.Build();
}
}