Maicon Gilton de Souza Freire
Maicon Gilton de Souza Freire
I solved it with: `...`
I did this: const [shouldRender, setshouldRender] = React.useState(true) React.useEffect(() => { setshouldRender(false) setTimeout(() => setshouldRender(true), 5) }, [x, y]) if (!shouldRender) return null return ( ... ) Basically you should...
Nice, I will see if I find a spare time to work on this for you.
I am facing the same error on RN v0.72.3 and Android 13. Any solution? For the moment I switched to react-native-async-storage, it works!
Hey Gaspar thanks for sharing! I will take a look and fix that for you. Em qua., 7 de set. de 2022 14:43, Gaspar ***@***.***> escreveu: > I'm having the...
I fixed by removing `pointerEvents='box-only'` in Animated.View [https://github.com/n4kz/react-native-material-ripple/blob/39ea61e8345feaa8086899f1a2e90ef31ce422bf/index.js#L267](url).
I found there are two more props coming from dayComponent you can use for that, so you can do: ``` dayComponent={({ date, state, onPress, onLongPress }) => {date.day} ```