I tried to load the image on ffimageloading:CachedImage from URL, few images which are of 5 MBs are not loading in Android Tablet.
Please suggest to me what should I do about the issue?
<ListView
BackgroundColor="#171921"
HasUnevenRows="True"
HorizontalOptions="FillAndExpand"
ItemsSource="{Binding DisplayData.ImagesSASUrl}"
SelectionMode="None"
VerticalOptions="Start">
<ListView.ItemTemplate>
<DataTemplate x:DataType="x:String">
<ViewCell>
<Grid>
<ffimageloading:CachedImage
Margin="10"
Aspect="AspectFit"
BitmapOptimizations="True"
DownsampleToViewSize="True"
HeightRequest="200"
LoadingPlaceholder="imageloading.png"
Source="{Binding .}" />
</Grid>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>