swipecards
swipecards copied to clipboard
Swiping in TabbedPage does not work on Android
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.
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);
// ...
}
}