How add CarouselPage into ListView? Do anybody have example?
I try do it :
<ListView ItemsSource="{Binding GroupItems}">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<CarouselPage ItemsSource="{Binding Items}" Title="Image">
<ContentPage>
<StackLayout>
<Image Source="icon.png" />
</StackLayout>
</ContentPage>
<ContentPage>
<StackLayout>
<Image Source="icon.png" />
</StackLayout>
</ContentPage>
<ContentPage>
<StackLayout>
<Image Source="icon.png" />
</StackLayout>
</ContentPage>
<ContentPage>
<StackLayout>
<Image Source="icon.png" />
</StackLayout>
</ContentPage>
</CarouselPage>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
and result is crash