Skip to content

Instantly share code, notes, and snippets.

@aravi365
Last active November 13, 2019 06:12
Show Gist options
  • Save aravi365/05a1a79c2631cc222b54d5252e297778 to your computer and use it in GitHub Desktop.
Save aravi365/05a1a79c2631cc222b54d5252e297778 to your computer and use it in GitHub Desktop.
import React from 'react';
import {View, Text, ActivityIndicator, StyleSheet} from 'react-native';
export default class SplashPage extends React.Component {
render() {
return (
<View style={styles.container}>
<Text style={{color: 'blue', fontSize: 40}}>Learn Firebase</Text>
<ActivityIndicator color="blue" size="large" />
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment