Felipe de Oliveira
Felipe de Oliveira
im having the same problem :/
Still an issue. I need to use statusBarTranslucent={true}.
I can only help you to configure for android device. You have to execute npx expo prebuild to create android and ios folders. 1º - Go to build.gradle inside android/app,...
Did you find a solution? I have a _layout.tsx and _layout.web.tsx. Importing @stripe/stripe-react-native into _layout.tsx causes this error on web.
I partialy resolved the issue creating a wrapper: ```// src/components/screens/dashboard/subscription/StripeWrapper.tsx import { Platform } from 'react-native'; const StripeWrapper = Platform.select({ web: require('./StripeWrapper.web').default, default: require('./StripeWrapper.native').default, }); export default StripeWrapper; ``` But...