Skip to content

Commit

Permalink
fix: status bar color on android (#1129)
Browse files Browse the repository at this point in the history
Co-authored-by: n0izn0iz <[email protected]>
  • Loading branch information
sachin-into and n0izn0iz authored Mar 26, 2024
1 parent 37719ac commit 5ab14d7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,13 @@ export default function App() {
<MenuProvider>
<MessageContextProvider>
<MediaPlayerContextProvider>
<StatusBar style="inverted" />
<StatusBar
style={
Platform.OS === "android"
? "light"
: "inverted"
}
/>
<Navigator />
</MediaPlayerContextProvider>
</MessageContextProvider>
Expand Down

0 comments on commit 5ab14d7

Please sign in to comment.