We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9162a1f commit 7eb4fadCopy full SHA for 7eb4fad
src/components/BottomNavigation/BottomNavigation.tsx
@@ -548,7 +548,8 @@ const BottomNavigation = <Route extends BaseRoute>({
548
removeClippedSubviews={
549
// On iOS, set removeClippedSubviews to true only when not focused
550
// This is an workaround for a bug where the clipped view never re-appears
551
- Platform.OS === 'ios' ? navigationState.index !== index : true
+ // On Android, it is disabled until https://github.com/software-mansion/react-native-screens/issues/2491 is fixed
552
+ Platform.OS === 'ios' ? navigationState.index !== index : false
553
}
554
>
555
<Animated.View
0 commit comments