Advertisement
agukrapo

snippets

Mar 10th, 2020
701
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React, { useEffect } from "react";
  2. import { Text } from "react-native";
  3. import RNBootSplash from "react-native-bootsplash";
  4.  
  5. function App() {
  6.   let init = async () => {
  7.     // …do multiple async tasks
  8.   };
  9.  
  10.   useEffect(() => {
  11.     init().finally(() => {
  12.       RNBootSplash.hide({ duration: 250 });
  13.     });
  14.   }, []);
  15.  
  16.   return <Text>My awesome app</Text>;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement