Skip to content

Instantly share code, notes, and snippets.

@gHashTag
Created October 16, 2019 08:13
Show Gist options
  • Select an option

  • Save gHashTag/348e336404c6a4a985b405d8b75dbea4 to your computer and use it in GitHub Desktop.

Select an option

Save gHashTag/348e336404c6a4a985b405d8b75dbea4 to your computer and use it in GitHub Desktop.
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