-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ios.js
87 lines (75 loc) · 2.07 KB
/
index.ios.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
'use strict';
var React = require('react-native');
var {
AppRegistry,
StyleSheet,
Text,
View,
TouchableHighlight,
AlertIOS,
TextInput,
NavigatorIOS,
} = React;
var styles = require('./style');
var Tableless = React.createClass({
getInitialState : function() {
return {
myText : "Hello, Tableless!"
};
},
callNextScreen: function (inputText) {
this.props.navigator.push({
title: "The Next Screen",
component: NextScreen,
passProps: { 'inputText': inputText }
});
},
textInputDidChange : function (event) {
this.setState({ myText: event.nativeEvent.text });
},
render: function() {
return (
<View style={styles.container} >
<TextInput style = {{ height: 50, padding: 6, fontSize: 16, borderColor: "lightblue", borderWidth: 1, margin: 10, borderRadius: 4 }}
placeholder="Type something..."
onChange={this.textInputDidChange}
onEndEditing={ event => this.callNextScreen(event.nativeEvent.text) } />
<Text style={styles.myText}>
{this.state.myText}
</Text>
<TouchableHighlight onPress={() => AlertIOS.alert(
'Simple Title',
'Hi, I am a native iOS alert component in action.'
)}>
<View style={styles.button}>
<Text style={{color: '#fff'}}>An Alert Message</Text>
</View>
</TouchableHighlight>
</View>
);
}
});
var MainNav = React.createClass({
render: function() {
return (
<NavigatorIOS
initialRoute={{
component: Tableless,
title: 'MyFirstProject'
}}
style={{ flex: 1 }} />
);
}
});
var NextScreen = React.createClass({
render: function() {
return (
<View style = {{ backgroundColor: 'green', flex: 1, justifyContent: 'center', alignItems: 'center' }} >
<Text style = {{ color: '#fff', fontSize: 22 }} >
You entered: {this.props.inputText}
</Text>
</View>
);
}
});
AppRegistry.registerComponent('MyFirstProject', () => MainNav);