-
Notifications
You must be signed in to change notification settings - Fork 174
Description
I just added CarouselView to my solution, installing it with nuget in both the iOS and Android projects and adding CarouselViewRenderer.Init() to AppDelegate.cs and MainActivity.cs respectively. I'm compiling using Android 11.0 / API Level 30 - R.
I tried with just a little test code (here below) and while on iOS it's all ok, on Android nothing at all appears. There are no errors or warnings that seem related to this, the packages seem correctly included and loaded.
<crsl:CarouselViewControl Grid.Row="1" Grid.Column="1" ItemsSource="{Binding Inputs}"> <crsl:CarouselViewControl.ItemTemplate> <DataTemplate> <StackLayout Orientation="Horizontal"> <Label BackgroundColor="Red" Text="{Binding Name}" HorizontalOptions="FillAndExpand"/> </StackLayout> </DataTemplate> </crsl:CarouselViewControl.ItemTemplate> </crsl:CarouselViewControl>
Is there some possible compatibility issue or missing initialization..?