I'm developing a ReactNative iOS app that starts with an ReactNative page when you enter, and after a page jump to the native page and then back again, the native navigation bar appears on the page unexpectedly.
Before entering the native page, it looks good:

After coming back from the native page,There is a native navigation at the top:

To hide the native header:
<Stack.Navigator screenOptions={{ headerShown: false }}>
...
</Stack.Navigator>