Skip to content

Commit

Permalink
style(theme): Blend statusbar color with app background.
Browse files Browse the repository at this point in the history
  • Loading branch information
sampie777 committed Nov 29, 2021
1 parent 4ff7464 commit 114a08f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,9 @@ const AppRoot: React.FC = () => {
}
</ErrorBoundary>

<StatusBar barStyle={theme.isDark ? "dark-content" : "default"} hidden={false} />
<StatusBar barStyle={!theme.isDark ? "dark-content" : "default"}
backgroundColor={theme.colors.background}
hidden={false} />
</SafeAreaView>;
};

Expand Down

0 comments on commit 114a08f

Please sign in to comment.