Luc Masalar
Luc Masalar
+1 please.
on Mac OS (M1) the following fixed it for me: ``` yarn global add react-devtools react-devtools-core ``` and, in the app's `package.json`: ``` "resolutions": { "react-devtools-core": "4.14.0" }, ```
I tried removing `node_modules` and `yarn --force`, it didn't help. > Also, what happens when you run node -e "console.log(require('react-native/cli').bin);"? Here's what I get ``` > cd src > node...
@thymikee I was able to fix both iOS and Android errors by moving `package.json`, `index.js` up in the the root directory, so now I have this: ``` myapp __ package.json...
yes, here is the output: ``` > cd src/node_modules/@react-native-community/cli-platform-android/ > node -e "console.log(require('react-native/cli').bin);" /Users/dude/workspace/myapp/src/node_modules/@react-native-community/cli/build/bin.js ```
hey @goleary, not yet. I posted [on SO as well](https://stackoverflow.com/questions/64489743/item-vertical-scroll-interferes-with-carousel-horizontal-scroll-android-only), nothing so far. Let me know if you figure out something, thanks 🍻
appreciate it @goleary ! BTW, feel free to use my demo repo that I put together for this issue: https://github.com/dudeinthemirror/carousel-example
hey @goleary thanks for following up on this! This looks like a viable solution and the fact that it's published under the @react-native-community namespace is reassuring ;) I'll make the...
@vikrantnegi from what I've tried so far, if you use `viewpager` you can't have it show previews (i.e. part of the previous page (left) and part of the next page...