Library to load images quickly and easily on Maui. Currently only Android and iOS are supported. if you needs other platform please help us. This Library enables fast loading and rendering of Animations and Images. This project is based on the the famous [FFImageLoading](https://github.com/luberda-molinet/FFImageLoading), so it is standing on the shoulder of a Giant. Features: - MAUI - Configurable disk and memory caching - Multiple image views using the same image source (url, path, resource) will use only one bitmap which is cached in memory (less memory usage)
$ dotnet add package MmImageLoadingLibrary to load images quickly & easily on Maui.
This Library enables fast loading and rendering of Animations and Images. This project is based on the the famous FFImageLoading, so it is standing on the shoulder of a Giant.
<p align="center"> <img src="./Resources/mSoSoG.jpeg" height="150"> </p>| OS | iOS | Android | Mac | Windows | Tizen |
|---|---|---|---|---|---|
| lib | ✅ | ✅ | TBD | TBD | TBD |
| nuget | ✅ | ✅ | TBD | TBD | TBD |
via nuget
add the following line to your csproj file to when you need local gifs to avoid issues with resitizer
<MauiImage Update="Resources\Images\*.gif" Resize="False" />
add the following to your MauiProgram.cs: (see sample project)
using de.level28.MmImageLoading;
...
#if (ANDROID || IOS)
.UseMmImageLoading()
#endif
...
for how to use see sample code or the orignal documentation.