Hi,
i use ImageCarouselRenderer for use image slider but i want read my image from web and use image source , no use File Image Source from project
`ObservableCollection imageSources = new ObservableCollection();
public MainPage()
{
InitializeComponent();
imageSources.Add("XamarinmonkeyLogo.png"); imageSources.Add("github.png"); imageSources.Add("microsoft.png"); imgSlider.Images = imageSources; } `
i want get my image from web and set in image slider and show it
how can i do it ?