File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -85,6 +85,9 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
8585 } ,
8686 googleServicesFile : "./build/google-services.json" ,
8787 } ,
88+ androidStatusBar : {
89+ translucent : true ,
90+ } ,
8891 // web: {
8992 // bundler: "metro",
9093 // output: "static",
Original file line number Diff line number Diff line change 1+ import { StatusBar } from "expo-status-bar"
12import { View } from "react-native"
23import Animated , { interpolate , useAnimatedStyle } from "react-native-reanimated"
34import { RootSiblingParent } from "react-native-root-siblings"
@@ -21,16 +22,19 @@ export function App({ children }: { children: React.ReactNode }) {
2122 ] ,
2223 } ) )
2324 return (
24- < View className = "flex-1 bg-black" >
25- < Session />
25+ < >
26+ < StatusBar translucent animated />
27+ < View className = "flex-1 bg-black" >
28+ < Session />
2629
27- < Animated . View className = "flex-1 overflow-hidden" style = { style } >
28- < RootSiblingParent > { children } </ RootSiblingParent >
29- </ Animated . View >
30- { __DEV__ && < DebugButton /> }
30+ < Animated . View className = "flex-1 overflow-hidden" style = { style } >
31+ < RootSiblingParent > { children } </ RootSiblingParent >
32+ </ Animated . View >
33+ { __DEV__ && < DebugButton /> }
3134
32- < EnvProfileIndicator />
33- </ View >
35+ < EnvProfileIndicator />
36+ </ View >
37+ </ >
3438 )
3539}
3640
You can’t perform that action at this time.
0 commit comments