all tabs height increase when one tab is list and scrolls
For Syntax Highlighting check this link
| software | version
| ---------------------------- | -------
| ios or android |
| react-native |
| react-native-tab-view |
| react-native-gesture-handler |
| react-native-reanimated |
| node |
| npm or yarn |
Me too +1
????
This generally happens when <TabView> is wrapped by a <ScrollView> parent component. Use a regular <View> as a parent component and it won't expand the overall height to the tallest rendered scene.
https://github.com/react-native-community/react-native-tab-view#avoid-rendering-tabview-inside-scrollview
Most helpful comment
This generally happens when
<TabView>is wrapped by a<ScrollView>parent component. Use a regular<View>as a parent component and it won't expand the overall height to the tallest rendered scene.