简体   繁体   中英

How do you animate the outgoing transition of a splash screen in react native

I have created an android splash screen using the react-native-splash-screen plugin. However, I have to make a zoom out transition for the splash screen before the main application screen loads. Does anyone know how to do this?

You can do that with a variation of the library:

import AnimatedSplash from "react-native-animated-splash-screen";

render() {
        return (
      <AnimatedSplash
        translucent={true}
        isLoaded={this.state.isLoaded}
        logoImage={require("./assets/logo.png")}
        backgroundColor={"#262626"}
        logoHeight={150}
        logoWidth={150}
      >
        <App />
      </AnimatedSplash>
    );
  }

Just look at the docs .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM