As stated in this question I need to load an image from Url using Xamarin.Forms
with MVVMCross 4.4.0
.
I was directed to use the FFimageLoading package in that question but it is not working, after searching I found that the FFimageLoading library has this axml tag:
<ffimageloading.cross.MvxImageLoadingView/>
I have a MvxListView
and in each ListItem I need to show an image from Url, but there's no way as Xamarin.forms
and Mvx.MvximageView
ImageUrl are using diferent versions of the same dependency.
I have a Model class with String imgUrl
, a viewModel with a observableCollection<myclass> items
wich has the imgUrl ( items.imgUrl
) but when I try to bind in axml it is not working.
<ffimageloading.cross.MvxImageLoadingView
android:layout_width="100dp"
android:layout_height="100dp"
local:MvxBind="Source imgUrl" />