index.tsx 593 B

1234567891011121314151617
  1. import React from 'react';
  2. import { ActivityIndicator, ImageBackground, StatusBar, View } from 'react-native';
  3. import { Colors } from 'src/theme';
  4. export const Splash = () => {
  5. return (
  6. <View style={{ flex: 1 }}>
  7. <StatusBar translucent backgroundColor="transparent" />
  8. <ImageBackground
  9. source={require('../../../assets/loading-screen.png')}
  10. style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}
  11. >
  12. <ActivityIndicator size={'large'} color={Colors.WHITE} style={{ paddingTop: '70%' }} />
  13. </ImageBackground>
  14. </View>
  15. );
  16. };