react-native/Examples/SampleApp/index.ios.js

54 lines
1.0 KiB
JavaScript
Raw Normal View History

2015-03-20 21:02:39 +00:00
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
'use strict';
var React = require('react-native');
var {
AppRegistry,
StyleSheet,
Text,
View,
} = React;
var SampleApp = React.createClass({
render: function() {
return (
<View style={styles.container}>
<Text style={styles.welcome}>
Welcome to React Native!
</Text>
<Text style={styles.instructions}>
2015-03-31 23:04:02 +00:00
To get started, edit index.ios.js
</Text>
<Text style={styles.instructions}>
Press Cmd+R to reload,{'\n'}
2015-05-06 07:11:31 +00:00
Cmd+D or shake for dev menu
2015-03-20 21:02:39 +00:00
</Text>
</View>
);
}
});
var styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
2015-03-31 23:04:02 +00:00
marginBottom: 5,
2015-03-20 21:02:39 +00:00
},
});
AppRegistry.registerComponent('SampleApp', () => SampleApp);