UNPKG

react-native-template-allmax

Version:

React native template with navigation, redux, redux-saga, eslit, flow, reactotron

23 lines (16 loc) 451 B
// @flow import React from 'react'; import { View, ActivityIndicator } from 'react-native'; import type { StackNavigationOptions } from '~/types'; import { styles } from './styles'; export function SplashScreen() { return ( <View style={styles.container}> <ActivityIndicator size="large" /> </View> ); } const navigationOptions: StackNavigationOptions = { header: null, }; SplashScreen.navigationOptions = navigationOptions;