Created
October 19, 2018 11:59
-
-
Save obliviusm/c017c33edcb9176043beb82211e9c2b0 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 { 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