-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathScreenA.js
74 lines (65 loc) · 1.53 KB
/
ScreenA.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
import React, { Component } from 'react';
import {
View,
Text,
NativeModules,
TouchableOpacity,
StyleSheet,
AlertIOS,
NativeEventEmitter
} from 'react-native';
const eventEmitter = new NativeEventEmitter(NativeModules.EventBusBridge);
const styles = StyleSheet.create({
main: {
marginTop: 100,
alignItems: 'center',
justifyContent: 'center'
},
button: {
padding: 20,
margin: 20,
backgroundColor: 'green'
},
text: {
color: 'white',
fontWeight: 'bold',
fontSize: 24
}
});
class ScreenA extends Component {
componentDidMount() {
eventEmitter.addListener('onLoadComplete', this.showAlert);
}
componentWillUnmount() {
eventEmitter.removeListener('onLoadComplete', this.showAlert);
}
showAlert = () => {
AlertIOS.alert('Screen B loaded');
};
openScreenB = () => {
NativeModules.NavigationBridge.push('ScreenB');
};
loadScreenB = () => {
NativeModules.EventBusBridge.sendEvent('lazyLoad', {
screen_name: 'ScreenB'
});
};
render() {
return (
<View style={styles.main}>
<Text>Hi I'm A</Text>
<TouchableOpacity onPress={this.openScreenB}>
<View style={styles.button}>
<Text style={styles.text}>Open screen B</Text>
</View>
</TouchableOpacity>
<TouchableOpacity onPress={this.loadScreenB}>
<View style={styles.button}>
<Text style={styles.text}>Load screen B</Text>
</View>
</TouchableOpacity>
</View>
);
}
}
export default ScreenA;