I am developing a page with a list of Shapes, I've also added Frame as the root element for each item to get rounded corners as a card. Everything is working for Android, but I notice something for iOS:
The shapes to be visible at all times.
Shapes disappear.


Remove the Frame and create a Grid with three rows that has two PancakeViews at the top and bottom to mimic a Frame.
<Grid RowDefinitions="Auto, *, Auto">
<yummy:PancakeView Grid.Row="0" CornerRadius="8,8,0,0" HeightRequest="8" />
<Path Grid.Row="1" ... />
<yummy:PancakeView Grid.Row="2" CornerRadius="0,0,8,8" HeightRequest="8" />
</Grid>
Shoutout to @sthewissen for PancakeView to come to the rescue 馃
Most helpful comment
Shoutout to @sthewissen for
PancakeViewto come to the rescue 馃