The FFImageLoading component, with Aspect="AspectFill", when use into a SfListView component, have a wrong height a it isn't clipped.
I've build a sample project to show and test the bug :
https://github.com/Nico04/FFImageLoadingSample
I've tried several cases, some work and some don't.
Case that doesn't work :
1/ FFImageLoading in a SfListView (SyncFusion ListView component)
Cases that work great :
A/ FFImageLoading in a ListView (Xamarin.Forms component)
B/ Image (Xamarin) in a SfListView
C/ FFImageLoading in a Frame in a SfListView
So the problem is an association of FFImageLoading & SfListView.
Do you have any idea ?
I have sent the same message to the FFImageLoading team :
https://github.com/luberda-molinet/FFImageLoading/issues/830
Thanks
...
...
below. Code Snippet : |
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
{
protected override void OnCreate(Bundle bundle)
{
TabLayoutResource = Resource.Layout.Tabbar;
ToolbarResource = Resource.Layout.Toolbar;
base.OnCreate(bundle);
FFImageLoading.Forms.Platform.CachedImageRenderer.Init(false);
global::Xamarin.Forms.Forms.Init(this, bundle);
LoadApplication(new App());
}
} |
...
...