Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@marshallmurphy
Created May 8, 2020 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marshallmurphy/86d48cb4e578162d7f009058a6e68b81 to your computer and use it in GitHub Desktop.
Save marshallmurphy/86d48cb4e578162d7f009058a6e68b81 to your computer and use it in GitHub Desktop.
// screens/Settings.js
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default function HomeScreen() {
return (
<View style={styles.container}>
<Text>Open up App.js to start working on your app!</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment