File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -124,8 +124,8 @@ const MainNavigator = createDrawerNavigator(
124
124
contentOptions : {
125
125
activeTintColor : THEME . PRIMARY_COLOR ,
126
126
labelStyle : {
127
- fontFamily : 'open-regular'
128
- }
127
+ fontFamily : 'open-regular' ,
128
+ } ,
129
129
}
130
130
}
131
131
)
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ export const AboutScreen = () => {
8
8
return (
9
9
< View style = { styles . center } >
10
10
< Text > About Screen</ Text >
11
+ < Text >
12
+ Application version < Text style = { styles . version } > 0.1.0</ Text >
13
+ </ Text >
11
14
</ View >
12
15
)
13
16
}
@@ -25,11 +28,13 @@ AboutScreen.navigationOptions = ({ navigation }) => ({
25
28
)
26
29
} )
27
30
28
-
29
31
const styles = StyleSheet . create ( {
30
32
center : {
31
33
flex : 1 ,
32
34
alignItems : 'center' ,
33
- justifyContent : 'center' ,
35
+ justifyContent : 'center'
36
+ } ,
37
+ version : {
38
+ fontFamily : 'open-bold'
34
39
}
35
40
} )
You can’t perform that action at this time.
0 commit comments