hssdiv

Results 22 comments of hssdiv

in my case (not fresh install) removing "react-native-reanimated" library helped

not on M1, but i think "Error: EISDIR" might be connected to mobx-state-tree, for example i encountered it again when i wrote types.boolean instead of types.maybeNull(types.boolean) and it couldn't assign...

had different error at first: "_undefined is not an object (evaluating 'obsQuery.reobserve.bind')_". Somehow managed to turn it into _"client.watchQuery cannot be called with fetchPolicy set to "standby"_. turns out that...

> I am having same issue too with @apollo/client version 3.4.0 I think it might be related to 'graphql' version from package.json I have "graphql": "^15.8.0", and everything is fine

I guess config-plugin was updated recently, as OP flow worked without a problem for me

@JorritKeijzer I'm using it with expo managed workflow(aka no ios\android folders) + dev-client (aka custom Expo Go) and I did same steps as in OP (add plugin, build dev-client, install...

@JorritKeijzer here are some main files, it's a bit messy, as it was test project https://gist.github.com/hssdiv/8c78c28ebb5aa4ada5d77d8063859c2c you are probably interested in function "testCall" inside "useVoip.tsx" hook also (maybe it's needed)...

**update:** it's native iOS 17 issue with some hevc videos: https://stackoverflow.com/collectives/mobile-dev/beta/discussions/77486339/loading-a-local-video-file-from-phpickervc-doesnt-work-in-ios-17 **original post:** Went a bit deeper and figured that when you select your video it shows up as an...

just use this to compare https://stackoverflow.com/a/65687141/11658653

original answer with touchable: ``` // I use this for iOS (on android you can close keyboard yourself) const richText = useRef(null); { richText.current?.blurContentEditor(); // or richText.current?.dismissKeyboard(); }} > {...