Created
October 16, 2019 08:13
-
-
Save gHashTag/348e336404c6a4a985b405d8b75dbea4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react' | |
| import { StyleSheet, View } from 'react-native' | |
| import Spinner from 'react-native-spinkit' | |
| import { PINK } from '../../constants' | |
| const styles = StyleSheet.create({ | |
| container: { | |
| flex: 1, | |
| alignItems: 'center', | |
| paddingTop: 200, | |
| backgroundColor: 'transparent' | |
| } | |
| }) | |
| const Loading = () => ( | |
| <View style={styles.container}> | |
| <Spinner size={45} type="9CubeGrid" color={PINK} /> | |
| </View> | |
| ) | |
| export { Loading } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment