-
Notifications
You must be signed in to change notification settings - Fork 177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
not appearing on Android while ok on iOS #593
Comments
@torelizer were you able to find a solution for this? |
Same problem... But mine is not showing where nested, I'm not sure it matters or not... |
I was having the same issue as above, but using the xamarin forms version of a CarouselView has fixed this issue (see here for more details) not much to convert from this package |
Upgrade XF to the latest version, I've found the same issue. And I fix it by this: You can try it. |
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..?
The text was updated successfully, but these errors were encountered: