import * as React from "react"; import { View, Image, ActivityIndicator } from "react-native"; type Props = { show: boolean; imgUrl?: string; source?: any; }; function LaunchScreen({ imgUrl, show, source }: Props) { if (!show) return null; return ( {/* */} ); } export default LaunchScreen;