-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp1.js
More file actions
53 lines (48 loc) · 1019 Bytes
/
app1.js
File metadata and controls
53 lines (48 loc) · 1019 Bytes
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
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
TouchableHighlight
} from 'react-native';
export default class app1 extends Component {
constructor(props) {
super(props);
this.state = { counter: 0 };
}
render() {
return (
<View style={styles.container}>
<Text style={styles.welcome}>
App1
</Text>
<TouchableHighlight
onPress={() => {
this.setState({ counter: this.state.counter + 1 });
}}
>
<Text style={{ color: 'black' }}>Press me: {this.state.counter}</Text>
</TouchableHighlight>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#F5FCFF'
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
color: 'black'
}
});
AppRegistry.registerComponent('app1', () => app1);