For some reason, the carousel is not rendering. I reduced this to bare minumum. I have tried this in a page with only the carousel and it works. The label above it shows, but not the carousel. Is there a problem with StackLayout and this control?
<StackLayout x:Name="List" Orientation="Vertical" IsVisible="True">
<Label Margin="10" FontSize="Large" Text="Houses found..." FontAttributes="Bold" HorizontalOptions="Center" HorizontalTextAlignment="Center"/>
<car:CarouselViewControl x:Name="propertyCarousel">
<car:CarouselViewControl.ItemTemplate>
<DataTemplate>
<Label Text="{Binding .}" FontSize="30"/>
</DataTemplate>
</car:CarouselViewControl.ItemTemplate>
</car:CarouselViewControl>
</StackLayout>