React Native Navigation - swipe to next screen

feerlay picture feerlay · Feb 10, 2018 · Viewed 17.5k times · Source

I have a very simple configuration for react native navigation

Navigation.startTabBasedApp({
  tabs: [
    {
      label: "One",
      screen: "example.FirstTabScreen",
      title: "Screen One"
    },
    {
      label: "Two",
      screen: "example.SecondTabScreen",
      title: "Screen Two"
    }
  ]
}

I can't find in documentation any API for swiping from screen 1 to screen 2. Do you know if is it even possible?

Answer

VolkanSahin45 picture VolkanSahin45 · Feb 10, 2018

I dont know react navigation has a swipe feature but you can use any other swipe library.

Example library : https://www.npmjs.com/package/react-native-swipe-gestures

At this library you can use swipe functions and in swipe functions you can navigate to any page.