You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello Everyone i hope you are doing well i am facing problem from couple of days when i open app the animation move more then 3 times i search a lot of things but nothing works around
Hello Everyone i hope you are doing well i am facing problem from couple of days when i open app the animation move more then 3 times i search a lot of things but nothing works around
const [expand, setExpand] = React.useState(false);
React.useEffect(() => {
setTimeout(() => {
setExpand(!expand);
}, 5000);
}, [profile]);
{expand && ( <Animatable.View animation="fadeInUp" useNativeDriver={true} direction="alternate" easing="linear" > <FlatList data={recommendedCourses} renderItem={({item}) => <Courses item={item} {...props} />} /> </Animatable.View>)}
The text was updated successfully, but these errors were encountered: