Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@developerPratik
Created December 4, 2018 06:12
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 developerPratik/eb0c9dae20a07ae9a0822d44169a6e56 to your computer and use it in GitHub Desktop.
Save developerPratik/eb0c9dae20a07ae9a0822d44169a6e56 to your computer and use it in GitHub Desktop.
React Native starter App
import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View} from 'react-native';
const instructions = Platform.select({
ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
android:'Double tap R on your keyboard to reload,\n' + 'Shake or press menu button for dev menu',
});
export default class App extends Component {
render() {
return (
<View style={styles.container}>
<Text style={styles.welcome}>Welcome to React Native!</Text>
<Text style={styles.instructions}>To get started, edit App.js</Text>
<Text style={styles.instructions}>{instructions}</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF'
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10
},
instructions: {
textAlign: 'center',
color: '#333',
marginBottom: 5
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment