I don’t know about animation so pls guide me how to make this type of animation in react native
| want this type of animation I hope you get this idea , pls help and thanksin advance, I try last two days but i don’t know how to achieve this type of animation in react native
2
Answers
You can use react-native-animated-splash package for splash animation.
There is no need to install any extra dependencies use this function method:
`const FunctionName = ({ navigation }) => {
setTimeout(() => {
}, 1500)
return (
//design the page
)}; `
Now g0 to App.js page and
<Stack.Screen name="name" //name the page component={Poems} // call function of the page where you want to navigate />