I am using ffimageloading package which is inherited from Image control eventually. I try to bind string urls from Internet but it looks like it doesnt work. I tried the same with Image control also no chance. either problem with MVVM binding or urls from the web. You mentioned that July 2016 update will fix the problem that web images will work.
<ContentView.Content>
<rotator:SfRotator x:Name="rotator" Grid.Row="0" NavigationDelay="2000" IsTextVisible="true"
ItemsSource="{Binding ImageCollection}" SelectedIndex="2" NavigationDirection="Horizontal" EnableLooping="true"
NavigationStripMode="Dots" BackgroundColor="#ececec" NavigationStripPosition="Bottom" EnableAutoPlay="true">
<rotator:SfRotator.ItemTemplate>
<DataTemplate>
<ffimageloading:CachedImage
WidthRequest="300" HeightRequest="300"
DownsampleToViewSize="true"
Source="{Binding Image}">
</DataTemplate>
</rotator:SfRotator.ItemTemplate>
</rotator:SfRotator>
private List<RotatorModel> imageCollection = new List<RotatorModel>();
public List<RotatorModel> ImageCollection
{
get { return imageCollection; }
set { imageCollection = value;
RaisePropertyChanged("ImageCollection");
}
}