Я пытаюсь создать интерфейс, похожий на Instagram (это упражнение), и нет способа показать изображение с URL.Кажется, что код правильный, но он не работает.
<StackLayout>
<Label TextColor="Black" Text="nyc_photographer"/>
</StackLayout>
<!--Image not showing-->
<Image Source="http://lorempixel.com/1920/1080/nature/3/"/>
<StackLayout Orientation="Horizontal" Spacing="20">
<Button TextColor="Blue" Text="Like" BackgroundColor="Transparent" />
<Button TextColor="Blue" Text="Comment" BackgroundColor="Transparent"/>
<Button TextColor="Blue" Text="Share" BackgroundColor="Transparent"/>
</StackLayout>
<StackLayout>
<BoxView Color="#f0f0f0" HeightRequest="1" />
<Label Text="700 likes" FontAttributes="Bold" TextColor="Black"/>
<Label TextColor="#444" Text="This is a shot yesterday in Skanor, Sweden, when driving home, from a couple of days of work in Denmark." />
</StackLayout>
</StackLayout>
После псевдонима nyc_photographer и кнопки Like должно появиться изображение.Я показываю изображение того, каким должен быть ожидаемый результат.
![I show an image of how the expected result should be.](https://i.stack.imgur.com/uPtG8.png)