Skip to content

Instantly share code, notes, and snippets.

@obliviusm
Created October 19, 2018 11:59
Show Gist options
  • Select an option

  • Save obliviusm/c017c33edcb9176043beb82211e9c2b0 to your computer and use it in GitHub Desktop.

Select an option

Save obliviusm/c017c33edcb9176043beb82211e9c2b0 to your computer and use it in GitHub Desktop.
import React from 'react'
import { View, ActivityIndicator } from 'react-native'
import styles from './Home/styles'
import { LinearGradient } from 'expo'
const Spinner = () => {
return (
<LinearGradient colors={['#F2F2F2', '#3061D9']} style={styles.loader}>
<ActivityIndicator size="large" color="#fff" />
</LinearGradient>
)
}
export default Spinner
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment