skip to Main Content

I don’t know about animation so pls guide me how to make this type of animation in react native

Splash animation

| 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


  1. You can use react-native-animated-splash package for splash animation.

    Login or Signup to reply.
  2. There is no need to install any extra dependencies use this function method:

    `const FunctionName = ({ navigation }) => {

    setTimeout(() => {

    navigation.replace('name') // there you have to give the name of page
    

    }, 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 />

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search