-
-
Notifications
You must be signed in to change notification settings - Fork 586
Closed
Labels
Missing reproThis issue need minimum repro scenarioThis issue need minimum repro scenarioPlatform: AndroidThis issue is specific to AndroidThis issue is specific to Android
Description
Description
I'm opening a new page on Android and everything is fine. When I want to come back from that opened page, all Views and Texts disappear from the screen. A white screen appears. Then my back page opens.
At this stage, I want the objects on my screen not to disappear.
In my opinion such a problem occurs when FABRIC is enabled. If fabric is not enabled, everything continues as normal. Could it be that the react-navigation package's fabric support is not working properly?
Here is the video.
ezgif-1-be282d7b39.mp4
"react": "18.2.0",
"react-native": "0.71.0",
---
"@react-navigation/native": "6.1.2",
"@react-navigation/native-stack": "6.9.8",
"react-native-gesture-handler": "2.9.0",
"react-native-safe-area-context": "4.4.1"
"react-native-screens": "3.18.2"
<GestureHandlerRootView style={{ flex: 1 }}>
<NavigationContainer>
<Stack.Navigator
screenOptions={{
headerMode: "screen"
}}
initialRouteName="Home">
<Stack.Screen name="Home" component={Home} />
<Stack.Screen
name="Page"
component={Page}
options={{ animation: "slide_from_right" }}
/>
</Stack.Navigator>
</NavigationContainer>
</GestureHandlerRootView>
props.navigation.navigate("Page");
props.navigation.goBack();
Steps to reproduce
- I go to a page.
- I click the back button.
- Everything disappears. A white page appears instantly and the previous page opens.
Snack or a link to a repository
https://stackoverflow.com/help/mcve
Screens version
3.18.2
React Native version
0.71.0
Platforms
Android
JavaScript runtime
Hermes
Workflow
React Native (without Expo)
Architecture
Fabric (New Architecture)
Build type
Debug mode
Device
Android emulator
Device model
No response
Acknowledgements
Yes
r0b0t3d, kirillzyusko, E-Emmy and HoshangDEV
Metadata
Metadata
Assignees
Labels
Missing reproThis issue need minimum repro scenarioThis issue need minimum repro scenarioPlatform: AndroidThis issue is specific to AndroidThis issue is specific to Android