A free, open-source UI control library for .NET MAUI
| iOS | macOS | Android | Windows |
|---|---|---|---|
| 14.0+ | 14.0+ | API 23+ | 10.0.17763+ |
GIFs do not represent actual performance — clone the repo and run the Samples app for a real feel.
dotnet add package FreakyControls
Or via Package Manager Console:
Install-Package FreakyControls -Version xx.xx.xx
In your MauiProgram.cs:
using Maui.FreakyControls.Extensions;
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");
});
// useSkiaSharp → FreakyCheckbox, FreakyRadioButton, FreakySvgImageView, FreakySwitch, FreakyScratchView
// useFreakyEffects → touch/ripple effects
builder.InitializeFreakyControls(useSkiaSharp: true, useFreakyEffects: true);
return builder.Build();
}
}Full API docs for every control live in the docs/ folder.


















