Add loading screen to data import

This commit is contained in:
mashazyu
2019-05-02 17:32:32 +02:00
parent c00684ebbb
commit 227aa69677
4 changed files with 98 additions and 39 deletions
+18
View File
@@ -0,0 +1,18 @@
import React from 'react'
import { View } from 'react-native'
import AppText from './app-text'
import { shared } from '../i18n/en/labels'
const AppLoadingView = () => {
return (
<View flex={1}>
<View style={{flex:1, justifyContent: 'center'}}>
<AppText style={{alignSelf: 'center'}}>{shared.loading}</AppText>
</View>
</View>
)
}
export default AppLoadingView