react-native-tab-view
react-native-tab-view copied to clipboard
A cross-platform Tab View component for React Native
### Description I want to hide the header component while scroll the tab screen, but the tab bar need be sticky on the top area. I believe there has many...
### Description I'm hoping to be able to do something like this: https://github.com/zyslife/react-native-head-tab-view or like what this guy describes: https://github.com/software-mansion/react-native-gesture-handler/issues/492#issuecomment-927353039. It's really hard to implement this manually since the nested...
### Motivation The UI of having a collapsible header above a Tab View is a commonly requested pattern (#411), but it is surprisingly challenging for newer RN devs to implement....
### Current behavior When I switched tabs ( inside Flatlist) the content was not shown. Without Flatlist it works fine, any ideas on how to fix it? (the scrollable view...
### Current behavior [expo demo](https://snack.expo.dev/66VUyv9e2) When putting a tab view inside a ScrollView, the tabs contents don't show unless you put a static height value, it seems to ignore flex...
Please provide enough information so that others can review your pull request: **Motivation** A follow up to this comment: https://github.com/satya164/react-native-tab-view/pull/1198#issuecomment-889945740 There exists some use case where we want to embed...
### Current behavior Animation between tabs not scrolls to the end. The onIndexChange not fires as a result. Animation ends if click on content https://user-images.githubusercontent.com/45219732/182527044-70fa1bcb-52dd-46fb-9c66-c23b91732553.mp4 ### Expected behavior Animation ends,...
### Current behavior Using the backwards swipe gesture to navigate backwards in the stack doesn't work if the swipe starts from inside the tab view content. The only time this...
### Description Can i jumpTo another page view withoutAnimation like react-native-pager-view setPageWithoutAnimation method? ### Alternatives _No response_ ### Inspirations & examples PagerView.current.setPageWithoutAnimation(index)
### Current behaviour I'm wrapping a Top Bar navigator in a scrollview to show additional content below some content. I want the user to be able to scroll down the...