import React from 'react'; import { ActivityIndicator, StyleSheet, Text, View } from 'react-native'; import { connect } from 'react-redux'; import I18n from '../i18n'; import StatusBar from '../containers/StatusBar'; import { withTheme } from '../theme'; import { themes } from '../constants/colors'; import sharedStyles from './Styles'; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center' }, text: { fontSize: 16, paddingTop: 10, ...sharedStyles.textRegular, ...sharedStyles.textAlignCenter } }); interface IAuthLoadingView { theme: string; text: string; } const AuthLoadingView = React.memo(({ theme, text }: IAuthLoadingView) => ( {text ? ( <> {`${text}\n${I18n.t('Please_wait')}`} ) : null} )); const mapStateToProps = (state: any) => ({ text: state.app.text }); export default connect(mapStateToProps)(withTheme(AuthLoadingView));