79373824

Date: 2025-01-21 09:25:55
Score: 1
Natty:
Report link

We solved the problem! Our StackNavigator was the problem. Inside our StackNavigator we had an element called <Stack.Screen>. And we fixed it by adding this to our code:

`<Stack.Screen
 name="ActivateScreen"
 component={ActivateScreen}
 options={{
 headerShown: false,
 cardStyle: { backgroundColor: 'transparent' },
   }}
 />`

And especially cardStyle: { backgroundColor: 'transparent' } fixed it!

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Menno Emmerik