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?
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.