I want to use CarouselPage to have the right-to-left transition animation. Could you please help me disable getsures in CarouselPage? I can't do that.
Thanks.
I want to use CarouselPage to have the right-to-left transition animation. Could you please help me disable getsures in CarouselPage? I can't do that.
Thanks.
Setting InputTransparent of the CarouselPage will do the thing:
public App () { MainPage = new CarouselPage{ InputTransparent = true, //This! Children = { new ContentPage{ Content = new Label{ Text = "Page 1", HorizontalOptions = LayoutOptions.CenterAndExpand, VerticalOptions = LayoutOptions.CenterAndExpand, } }, new ContentPage{ Content = new Label{ Text = "Page 2", HorizontalOptions = LayoutOptions.CenterAndExpand, VerticalOptions = LayoutOptions.CenterAndExpand, } } } }; }