swipecards icon indicating copy to clipboard operation
swipecards copied to clipboard

Swiping in TabbedPage does not work on Android

Open robinmanuelthiel opened this issue 7 years ago • 1 comments

On Android's TabbedPage, users can use swipe gestures to navigate between the tabs by default. This seems to collide with the card's swipe gestures.

robinmanuelthiel avatar Oct 09 '17 21:10 robinmanuelthiel

Suggested workaround for now is to disable page swiping on Android using:

public partial class TabbedDemoPage : Xamarin.Forms.TabbedPage
{
    public TabbedDemoPage()
    {
        InitializeComponent();
        this.On<Xamarin.Forms.PlatformConfiguration.Android>().SetIsSwipePagingEnabled(false);

        // ...
    }
}

robinmanuelthiel avatar Oct 09 '17 21:10 robinmanuelthiel