import React from 'react'; import {StyleSheet, Image, View, Text} from 'react-native'; import {container} from './../resoureces/styles/GlobalStyles'; import {BLACK, PRIMERY} from '../color'; export default function StartLoading() { return ( ); } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', backgroundColor: PRIMERY, color: BLACK, }, splashCompanyLogo: { flex: 1, justifyContent: 'center', alignItems: 'center', }, image1: { width: '100%', height: '100%', resizeMode: 'cover', }, });