react native navigation + react native reanimated bug with Animated.View #4250
LiorAharon98
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
hello
i am using expo with react native with the libary react native navigation + react native reanimated
and i have a problem
when i add
Animated.View
its make the screen flickering (the all app not only the specific screen / components)
and when i delete the Animated.View
it work as well
and i dont know why this is happen
only and the first startup its make the slide as well after this its stopped working and the flickering is all the time
`
import { StyleSheet, Text, View } from 'react-native'
import React,{useState} from 'react'
import Animated from 'react-native-reanimated'
import {SlideInUp} from "react-native-reanimated"
const AnimateTest = () => {
return (
<Animated.View entering={SlideInUp}>
hello
</Animated.View>
)
}
export default AnimateTest
const styles = StyleSheet.create({})
`
video
https://streamable.com/9wxl4c
Beta Was this translation helpful? Give feedback.
All reactions