I'm applying a CarouselView inside of a GridLayout and the ItemTemplate (currently a stack layout) should go edge to edge to the left, top, and right edges of the screen. There should be no padding, insets, or margins. However, it seems that on iOS only, the left and top edges contains some white space, approximately 2 pixels (see screenshots). When you scroll through, the white spaces remain, but there shouldn't be any. Android does not have this issue and renders as expected.
iOS should render like Android (see screenshot)

iOS contains white space on the top and left edges (see screenshot)

(See Above)
Confirmed also with 4.5.5.74 nightly
So this seems some issue with layout and CollectionView not specific to CarouselView.
Well try to figure it out but here's my workaround right now. Wrap it on a Frame.
<Frame BackgroundColor="{Binding BackgroundColor}" CornerRadius="0" HasShadow="False">
<StackLayout>
<Label
HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand"
HorizontalTextAlignment="Center" VerticalTextAlignment="Center"
Text="{Binding Name}" />
</StackLayout>
</Frame>
It's actually adding one pixel on top and left, and right and bottom one pixel get out of the frame
Most helpful comment
So this seems some issue with layout and CollectionView not specific to CarouselView.
Well try to figure it out but here's my workaround right now. Wrap it on a Frame.