FreakyControls 0.5.0-pre
See the version list below for details.
dotnet add package FreakyControls --version 0.5.0-pre
NuGet\Install-Package FreakyControls -Version 0.5.0-pre
<PackageReference Include="FreakyControls" Version="0.5.0-pre" />
paket add FreakyControls --version 0.5.0-pre
#r "nuget: FreakyControls, 0.5.0-pre"
// Install FreakyControls as a Cake Addin #addin nuget:?package=FreakyControls&version=0.5.0-pre&prerelease // Install FreakyControls as a Cake Tool #tool nuget:?package=FreakyControls&version=0.5.0-pre&prerelease
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-android34.0 is compatible. net8.0-browser was computed. net8.0-ios was computed. net8.0-ios17.2 is compatible. net8.0-maccatalyst was computed. net8.0-maccatalyst17.2 is compatible. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net8.0-windows10.0.19041 is compatible. |
-
net8.0
- FreakyEffects (>= 0.1.2)
- Microsoft.Maui.Controls (>= 8.0.3)
- Microsoft.Maui.Controls.Compatibility (>= 8.0.3)
- SkiaSharp.Svg (>= 1.60.0)
- SkiaSharp.Views.Maui.Controls (>= 2.88.3)
-
net8.0-android34.0
- FreakyEffects (>= 0.1.2)
- Microsoft.Maui.Controls (>= 8.0.3)
- Microsoft.Maui.Controls.Compatibility (>= 8.0.3)
- SkiaSharp.Svg (>= 1.60.0)
- SkiaSharp.Views.Maui.Controls (>= 2.88.3)
-
net8.0-ios17.2
- FreakyEffects (>= 0.1.2)
- Microsoft.Maui.Controls (>= 8.0.3)
- Microsoft.Maui.Controls.Compatibility (>= 8.0.3)
- SkiaSharp.Svg (>= 1.60.0)
- SkiaSharp.Views.Maui.Controls (>= 2.88.3)
-
net8.0-maccatalyst17.2
- FreakyEffects (>= 0.1.2)
- Microsoft.Maui.Controls (>= 8.0.3)
- Microsoft.Maui.Controls.Compatibility (>= 8.0.3)
- SkiaSharp.Svg (>= 1.60.0)
- SkiaSharp.Views.Maui.Controls (>= 2.88.3)
-
net8.0-windows10.0.19041
- FreakyEffects (>= 0.1.2)
- Microsoft.Maui.Controls (>= 8.0.3)
- Microsoft.Maui.Controls.Compatibility (>= 8.0.3)
- SkiaSharp.Svg (>= 1.60.0)
- SkiaSharp.Views.Maui.Controls (>= 2.88.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.5.0 | 468 | 10/5/2024 |
0.5.0-pre | 209 | 6/12/2024 |
0.4.12 | 1,345 | 5/31/2024 |
0.4.12-pre | 156 | 5/24/2024 |
0.4.11 | 796 | 5/10/2024 |
0.4.10 | 782 | 2/25/2024 |
0.4.10-pre | 112 | 2/10/2024 |
0.4.9 | 559 | 12/30/2023 |
0.4.9-pre | 294 | 11/18/2023 |
0.4.8 | 936 | 11/11/2023 |
0.4.8-pre | 138 | 10/29/2023 |
0.4.7 | 2,068 | 10/7/2023 |
0.4.7-pre | 102 | 10/4/2023 |
0.4.6-pre | 111 | 10/1/2023 |
0.4.5 | 202 | 9/23/2023 |
0.4.5-pre | 136 | 9/8/2023 |
0.4.4 | 229 | 8/20/2023 |
0.4.4-pre | 209 | 7/16/2023 |
0.4.3 | 1,148 | 4/18/2023 |
0.4.3-pre | 210 | 2/25/2023 |
0.4.2 | 659 | 1/14/2023 |
0.4.2-pre | 174 | 12/31/2022 |
0.4.1 | 371 | 11/25/2022 |
0.4.1-pre | 140 | 11/20/2022 |
0.4.0-pre | 146 | 11/17/2022 |
0.3.0 | 659 | 10/13/2022 |
0.2.0 | 398 | 9/30/2022 |
0.1.0 | 406 | 9/11/2022 |
FreakyZoomableImageView is here!