I want to show an image from http site in Xamarin.Forms. I have tried the following code.
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="App_ImageUrl.MainPage">
<StackLayout VerticalOptions="Center" HorizontalOptions="Center">
<Image Source="http://45.159.114.25:88/Uploads/Sale/SkuImage/10_9c0d07a145d1418c840c284fbca9614f.jpg" VerticalOptions="Center" HorizontalOptions="Center" Aspect="AspectFill" x:Name="nn" />
<Image Source="https://dkstatics-public.digikala.com/digikala-products/199716.jpg?x-oss-process=image/resize,m_lfit,h_350,w_350/quality,q_60" BackgroundColor="Red" />
</StackLayout>
</ContentPage>
First image does not show, but the second image shows.
Both images are available on the Internet. What is the difference?