Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swiping in TabbedPage does not work on Android #1

Open
robinmanuelthiel opened this issue Oct 9, 2017 · 1 comment
Open

Swiping in TabbedPage does not work on Android #1

robinmanuelthiel opened this issue Oct 9, 2017 · 1 comment
Labels

Comments

@robinmanuelthiel
Copy link
Owner

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
Copy link
Owner Author

robinmanuelthiel commented Oct 9, 2017

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);

        // ...
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant