Hi Xamarin Experts,
I have a project that heavily uses the Xamarin.Forms to speed up the development. However, I am having issues with CarouselPage in iPad. Below is my code:
public class App
{
public static Page GetMainPage ()
{
CarouselPage MyCarouselPage = new CarouselPage
{
Children =
{
new ContentPage
{
BackgroundColor = Color.Green
},
new ContentPage
{
BackgroundColor = Color.Red
},
new ContentPage
{
BackgroundColor = Color.Lime
},
new ContentPage
{
BackgroundColor = Color.Purple
},
}
};
return MyCarouselPage;
}
}
If you just copy paste this code into a xamarin forms project and run it on ipad Mini with 8.1 ios. and then go to second page on Carousel and rotate device to landscape mode, you will see half of the page if page 2 and part of page1 appears( partly green partly red). I am pretty sure it is a bug in CarouselPage. Would there be an easy workaround for this? Or I have to just forget Xamarin.Forms and do Carousel all in native iOS?
Really appreciate your support.
Arash