Alekseenko Nikita
Alekseenko Nikita
> I have the same problem too. Didn't find a solution? It's just that even the example from the repository does not work for me.
Hey! Try this, probably it wil help you
useEffect(() => { Voice.onSpeechStart = onSpeechStart; Voice.onSpeechEnd = onSpeechEnd; Voice.onSpeechResults = onSpeechResults; Voice.onSpeechPartialResults = onSpeechPartialResults; return () => { Voice.destroy().then(Voice.removeAllListeners); }; // eslint-disable-next-line react-hooks/exhaustive-deps }, []); const onSpeechStart = e...
> > Adding the methods to the file removes the error! Not sure if this is the best fix! > > https://github.com/software-mansion/react-native-reanimated/pull/2316/files > > I don't use React Native Reanimated...
> > @thomas-rx I haven't looked at this in a while, but it's probably not solved. I'll have to look into it. > > Yes I fixed the problem on...
Hi! I found a solution for this problem, [check this out](https://www.cristiangutu.pro/react-native-fast-image-patch-to-fix-the-image-change-flickering/) Just use 8.6.3 version for now and add patch from instruction. Works perfectly
Can you share part of your code where you using fast image?
Hi all, I've encountered the problem of the impossibility of updating the array of cards. Dynamic changing of the card array state does not help. Then the following solution came...