mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
ab81db65c5
Reviewed By: mkonicek Differential Revision: D4522116 Ninja: oss only fbshipit-source-id: d17e0e8badcfe97eaea092e5d5274e02904a534d
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
import React, { Component } from 'react';
|
|
import {
|
|
StyleSheet,
|
|
Text,
|
|
View,
|
|
} from 'react-native';
|
|
|
|
export default class WelcomeText extends Component {
|
|
render() {
|
|
return (
|
|
<View style={styles.container}>
|
|
<Text style={styles.welcome}>
|
|
Welcome to React Native!
|
|
</Text>
|
|
<Text style={styles.instructions}>
|
|
This app shows the basics of navigating between a few screens,
|
|
working with ListView and handling text input.
|
|
</Text>
|
|
<Text style={styles.instructions}>
|
|
Modify any files to get started. For example try changing the
|
|
file views/welcome/WelcomeText.android.js.
|
|
</Text>
|
|
<Text style={styles.instructions}>
|
|
Double tap R on your keyboard to reload,{'\n'}
|
|
Shake or press menu button for dev menu.
|
|
</Text>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
backgroundColor: 'white',
|
|
padding: 20,
|
|
},
|
|
welcome: {
|
|
fontSize: 20,
|
|
textAlign: 'center',
|
|
margin: 16,
|
|
},
|
|
instructions: {
|
|
textAlign: 'center',
|
|
color: '#333333',
|
|
marginBottom: 12,
|
|
},
|
|
});
|