FreakyControls 0.6.1

dotnet add package FreakyControls --version 0.6.1
                    
NuGet\Install-Package FreakyControls -Version 0.6.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FreakyControls" Version="0.6.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FreakyControls" Version="0.6.1" />
                    
Directory.Packages.props
<PackageReference Include="FreakyControls" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FreakyControls --version 0.6.1
                    
#r "nuget: FreakyControls, 0.6.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package FreakyControls@0.6.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=FreakyControls&version=0.6.1
                    
Install as a Cake Addin
#tool nuget:?package=FreakyControls&version=0.6.1
                    
Install as a Cake Tool

Installation

Add our NuGet package or

Run the following command to add our Nuget to your .Net MAUI app:

Install-Package FreakyControls -Version xx.xx.xx

Add the following using statement and Initialization in your MauiProgram:

using MAUI.FreakyControls.Extensions;
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");
                        });
             // Some of our controls use SkiaSharp and FreakyEffects!
             builder.InitializeFreakyControls(useSkiaSharp: true, useFreakyEffects: true);
             return builder.Build();
         }
      }

Now you can use the controls in your app.

Breaking Changes in this version!!

Post v0.5.0-pre there will be some breaking changes made to the namespace structure of our controls, anywhere the namespace had the Shared folder mentioned in it, shall be removed, together with the folder itself So the new namespace would be as shown below:


using Maui.FreakyControls.Shared.Enums; //old namespace
using Maui.FreakyControls.Enums; // new namespace

The above applies to all the other sub-folders as well.

Deprecated API's from the previous version have also been removed!

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-android36.0 is compatible.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-ios26.0 is compatible.  net10.0-maccatalyst was computed.  net10.0-maccatalyst26.0 is compatible.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed.  net10.0-windows10.0.19041 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on FreakyControls:

Repository Stars
FreakyAli/Maui.FreakyEffects
FreakyEffects is an effects kit for .NET MAUI which provides a set of effects and utilities to build modern mobile apps.
Version Downloads Last Updated
0.6.1 287 12/6/2025
0.6.0 1,696 9/18/2025
0.5.9 333 9/18/2025
0.5.8 343 9/18/2025
0.5.7 1,841 5/5/2025
0.5.6 322 4/28/2025
0.5.5 278 4/25/2025
0.5.5-pre 223 4/25/2025
0.5.2-pre 247 4/16/2025
0.5.1 2,402 12/15/2024
0.5.1-pre 155 12/15/2024
0.5.0 3,257 10/5/2024
0.5.0-pre 317 6/12/2024
0.4.12 1,987 5/31/2024
0.4.12-pre 300 5/24/2024
0.4.11 1,181 5/10/2024
0.4.10 1,249 2/25/2024
0.4.10-pre 196 2/10/2024
0.4.9 677 12/30/2023
0.4.9-pre 360 11/18/2023
0.4.8 1,147 11/11/2023
0.4.8-pre 229 10/29/2023
0.4.7 2,214 10/7/2023
0.4.7-pre 171 10/4/2023
0.4.6-pre 172 10/1/2023
0.4.5 287 9/23/2023
0.4.5-pre 221 9/8/2023
0.4.4 331 8/20/2023
0.4.4-pre 304 7/16/2023
0.4.3 1,300 4/18/2023
0.4.3-pre 360 2/25/2023
0.4.2 795 1/14/2023
0.4.2-pre 316 12/31/2022
0.4.1 494 11/25/2022
0.4.1-pre 289 11/20/2022
0.4.0-pre 297 11/17/2022
0.3.0 808 10/13/2022
0.2.0 544 9/30/2022
0.1.0 580 9/11/2022

Android 16k Pages are now supported