-
Notifications
You must be signed in to change notification settings - Fork 11
Home
Maui.FreakyEffects is a collection of visually stunning and unique effects for Maui, it contains a variety of effects that you can use to add some creativity to your Maui applications.
The code for each effect is well-documented and easy to understand, making it accessible for both experienced Maui developers and those just starting.
If you want to add unique visual effects to your Maui applications, check out Maui.FreakyEffects and start exploring the possibilities!
Add the NuGet package or
Run the following command to add NuGet to your .Net MAUI app:
Install-Package FreakyEffects -Version xx.xx.xx
Add the following using statement and then Init the effects in your MauiProgram:
using Maui.FreakyEffects;
.
.
.
.ConfigureEffects(effects =>
{
effects.InitFreakyEffects();
});
If you are using Maui.FreakyControls
with Maui.FreakyEffects
, the FreakyControls
initialization internally also initializes FreakyEffects
hence, no explicit initialization is necessary, If you do so, an exception will be thrown for duplicate effects.