File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,11 @@ const App = () => {
35
35
contentInsetAdjustmentBehavior = "automatic"
36
36
style = { styles . scrollView } >
37
37
< Header />
38
+ { global . HermesInternal == null ? null : (
39
+ < View style = { styles . engine } >
40
+ < Text style = { styles . footer } > Engine: Hermes</ Text >
41
+ </ View >
42
+ ) }
38
43
< View style = { styles . body } >
39
44
< View style = { styles . sectionContainer } >
40
45
< Text style = { styles . sectionTitle } > Step One</ Text >
@@ -73,6 +78,10 @@ const styles = StyleSheet.create({
73
78
scrollView : {
74
79
backgroundColor : Colors . lighter ,
75
80
} ,
81
+ engine : {
82
+ position : 'absolute' ,
83
+ right : 0 ,
84
+ } ,
76
85
body : {
77
86
backgroundColor : Colors . white ,
78
87
} ,
@@ -94,6 +103,14 @@ const styles = StyleSheet.create({
94
103
highlight : {
95
104
fontWeight : '700' ,
96
105
} ,
106
+ footer : {
107
+ color : Colors . dark ,
108
+ fontSize : 12 ,
109
+ fontWeight : '600' ,
110
+ padding : 4 ,
111
+ paddingRight : 12 ,
112
+ textAlign : 'right' ,
113
+ } ,
97
114
} ) ;
98
115
99
116
export default App ;
You can’t perform that action at this time.
0 commit comments