-
Notifications
You must be signed in to change notification settings - Fork 0
/
WordPage.js
80 lines (64 loc) · 1.78 KB
/
WordPage.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
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
class WordPageScreen extends React.Component {
componentDidMount = () => {
console.log(this.props.navigation.state.params.english)
}
render() {
const params = this.props.navigation.state.params
return (
<View style={styles.container}>
<View style={styles.englishWordContainer}>
<Text style={styles.englishTitle}>{params.english}</Text>
</View>
<View style={styles.krioluWordContainer}>
<View style={styles.krioluTopThird}></View>
<View style={styles.krioluMiddle}>
<Text style={styles.krioluTitle}>{params.kriolu}</Text>
</View>
<View style={styles.krioluLastThird}></View>
</View>
</View>
)
}
}
const styles = StyleSheet.create({
background: {
backgroundColor: '#003893'
},
container: {
flex: 1,
backgroundColor: '#003893',
},
englishWordContainer: {
flex: 0.25,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#003893'
},
krioluWordContainer: {
flex: 0.25,
backgroundColor: '#FFFFFF',
color: '#F7D116',
},
krioluTopThird: {
flex: 0.33
},
krioluMiddle: {
flex: 0.33,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#CF2027'
},
englishTitle: {
fontWeight: "bold",
fontSize: 30,
color: '#F7D116',
},
krioluTitle: {
fontWeight: "bold",
fontSize: 30,
color: "#FFFFFF"
},
})
export default WordPageScreen;