diff --git a/App.tsx b/App.tsx index 2f5d8e7..29b08ff 100644 --- a/App.tsx +++ b/App.tsx @@ -1,6 +1,10 @@ import "react-native-gesture-handler"; import React from "react"; import { StatusBar, useColorScheme } from "react-native"; +import SplashScreen from "react-native-splash-screen"; +/** + * ? Local Imports + */ import Navigation from "./src/services/navigation"; import { isAndroid } from "@freakycoder/react-native-helpers"; @@ -16,6 +20,10 @@ const App = () => { StatusBar.setBackgroundColor("rgba(0,0,0,0)"); StatusBar.setTranslucent(true); } + + setTimeout(() => { + SplashScreen.hide(); + }, 750); }, [scheme]); return ( diff --git a/README.md b/README.md index 0739d9b..9d82e49 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@

React Native Typescript Boilerplate + src="assets/react-native-typescript-boilerplate.gif" height="650" />

# 🐶 What's Included? @@ -73,6 +73,7 @@ git clone git@github.com:WrathChaos/react-native-typescript-boilerplate.git my-a ## Clean-Up & Simple Run Clean up the files from the example repository and do not forget to install the dependencies +There is a good example by default on `HomeScreen`. You can delete the all screens. - `npm i` - `npm run clean-up` diff --git a/assets/react-native-typescript-boilerplate.gif b/assets/react-native-typescript-boilerplate.gif index ab2bdf9..da961f0 100644 Binary files a/assets/react-native-typescript-boilerplate.gif and b/assets/react-native-typescript-boilerplate.gif differ