Eike Foken
Eike Foken
Can you share some more info, like which WPGraphQL version and other WP plugins you use?
Wow, thanks for reporting this 😄
Hey there, I'm currently working on login and registration. There already is a `LoginView` which is working fine but I commented it out for now as I have to finish...
The thing is that `SafeAreaView` from React Native is iOS only, yes. But the common `react-native-safe-area-context` library also has support for Android, I don't know if it makes sense though…...
Duplicate of https://github.com/figma/code-connect/issues/35
No, because you are checking if the path contains `node_modules`, for example in Vite plugin: https://github.com/Anber/wyw-in-js/blob/main/packages/vite/src/index.ts#L111 and esbuild: https://github.com/Anber/wyw-in-js/blob/main/packages/esbuild/src/index.ts#L99 EDIT: I changed Vite plugin and changed that lines to: ```ts...
@layershifter of course, boolean would be an option, just to bypass the node_modules filter. But maybe array is also a good idea, because then you can only allow specific modules...
@layershifter you're right, good idea 👍
Let me know what you think @necolas There are still some `$FlowFixMe` that I added inside `createStrictDOMSvgComponent` which can be fixed by changing the `NativeProps` type, but I was not...
I just used `overflow: scroll` for web and a ScrollView on the native side. Never really had to think about scrolling 😅