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
52open ReactNative
open Style
module ContextWrapper = {
@react.component
let make = (~props, ~rootTag, ~children) => {
let nativeProp = SdkTypes.nativeJsonToRecord(props, rootTag)
<NativePropContext nativeProp>
<LoggerContext>
<ViewportContext
topInset=nativeProp.hyperParams.topInset bottomInset=nativeProp.hyperParams.bottomInset
>
<ThemeContext appearance=nativeProp.configuration.appearance>
<LocaleStringDataContext locale=nativeProp.configuration.appearance.locale>
<CountryStateDataContext>
<LoadingContext>
<DynamicFieldsContext>
<BannerContext> children </BannerContext>
</DynamicFieldsContext>
</LoadingContext>
</CountryStateDataContext>
</LocaleStringDataContext>
</ThemeContext>
</ViewportContext>
</LoggerContext>
</NativePropContext>
}
}
module App = {
@react.component
let make = () => {
<View style={s({flex: 1.})}>
{WebKit.platform === #android
? <StatusBar translucent=true backgroundColor="transparent" />
: React.null}
<NavigatorRouterParent />
</View>
}
}
@react.component
let make = (~props, ~rootTag) => {
<ErrorBoundary rootTag level=FallBackScreen.Top>
<ContextWrapper props rootTag>
<PortalHost>
<App />
</PortalHost>
</ContextWrapper>
</ErrorBoundary>
}