Questions tagged [ffimageloading]
129 questions
1
vote
0 answers
FFImageLoading Xamarin Disk Cache Not working
No matter what I try, I cannot get FFImageLoading disk caching to work in my Xamarin Forms app. I have FadeAnimationEnabled turned on, with a long duration, so that I can easily see when images are cached vs not.
In memory caching is working great,…

BSohl
- 101
- 5
1
vote
0 answers
Xamarin FFImageLoading and Glidex/Nuke compatibility
In the past few days I got to know the glidex.forms and how it would be better for loading images in android. After some research I've found the official Nuke page where they teach how to install Nuke(for iOs) and Glidex. I thought they would…

Éder Rocha
- 1,538
- 11
- 29
1
vote
1 answer
Xamarin: Fix linker errors (with FFImageLoading and SDWebImage)
I'm trying to integrate some Native Forms pages to an existing Xamarin.iOS application so that those pages can be shared between several platforms. I would like to use Xamarin.FFImageLoading for images on those Native Forms pages. This is normally…

Rafael
- 11
- 1
1
vote
1 answer
Activityindicator not working with FFImageLoading
The code works with the normal but not with FFImageLoading. The ActivityIndicator is not displaying... What am I doing wrong?
…

sharkyenergy
- 3,842
- 10
- 46
- 97
1
vote
2 answers
Xamarin - Items not loading or missing from 'Resources' folder in Release only
I have developed a Xamarin.Forms application using Visual Studio 2019. This targets iOS and Android. I have currently being developing in Debug mode.
The application contains many svg images which are loaded using the FFImageLoading.Svg.Forms plugin…

Martin Evans
- 45,791
- 17
- 81
- 97
1
vote
2 answers
MVVMCross IOS assets binding to cell
I have a table data and images to assets folder.
I need to bind image by name from assets to TableCell
How can I do it?
I've found old solutions for MVVMCross.Binding 5.7.0 with MvxImageViewLoader, but when I added it to solutions I got references…

Atlantis
- 725
- 7
- 26
1
vote
1 answer
xamarin forms change ffimage programmatically
I'm struggling with changing an image programmatically.
In xaml I have an image like:
In Code I have a TapGesture Recognizer:
var tapn3 = new…
1
vote
0 answers
How to set height and width of LoadingPlaceholder in CachedImage of FFImageLoading in Xamarin.Forms?
I want to set height and width of LoadingPlaceholder in CachedImage of FFImageLoading in Xamarin.Forms.
I have tried by following way but the GIF image use full size and shows big. I want to make it 64px as it's current size.
Code:
xaml…

Nanji Mange
- 2,155
- 4
- 29
- 63
1
vote
1 answer
How do I use FFImageLoading's ".Preload()" in Xamarin.Forms?
In my current Xamarin.Forms project I use FFImageLoader to render my SVGs.
The Problem is that I would like to preload my images to avoid ugly "page building issues", but I don't understand how to realize it.
Current usage:
new SvgCachedImage {
…

jor
- 25
- 7
1
vote
1 answer
Xamarin Forms FFImageLoading does not render svg image
I use FFImageLoading v2.3.4 for my Xamarin Forms project. However, it does not render properly. It renders images which I saved as svg format from Adobe XD as black. When I download a svg format image from internet, FFImageLoading renders…

xamarin
- 61
- 1
- 1
- 8
1
vote
0 answers
FFImageLoading xamarin forms
I'm using FFImageLoading but the view where I call this SDK apparently does not show but is loading. Here is the StackTrace:
01-25 13:37:14.393 I/art ( 9376): Rejecting re-init on previously-failed class java.lang.Class
01-25 13:37:14.394 I/art…

Jonathan
- 11
- 3
1
vote
1 answer
Xamarin ffimageloading plugin tap to full screen
The code below render an image with 200px height using ffimageloading component. I need to tap on this image and display the image in a fullscreen or zoom it. Is it posible with ffimageloading or I need implement it by each platform (android and…

Tiago Crizanto
- 314
- 8
- 22
1
vote
1 answer
Calling GetImageAsPngAsync of FFImageLoading from ViewModel class?
Using https://github.com/luberda-molinet/FFImageLoading for Xamarin Forms
My XAML:
…

AG70
- 874
- 1
- 9
- 23
1
vote
1 answer
How to implement a UWP Custom Renderer in Xamarin-Forms using FFImageLoading
I cant find a good example about use of FFImageLoading in a UWP custom renderer for xamarin forms, good example sites use to focus in android and ios only. My main issue is how to use this Image Class in the UWP resource, CachedImage should be used…
1
vote
1 answer
Xamarin FFImageLoading Usage Clarification
I see we use FFImageLoading like below
var cachedImage = new CachedImage() {
HorizontalOptions = LayoutOptions.Center,
VerticalOptions = LayoutOptions.Center,
WidthRequest = 300,
HeightRequest = 300,
...
Source =

pixel
- 9,653
- 16
- 82
- 149