Skip to content

Commit

Permalink
#bugfix <Statusbar> color grade
Browse files Browse the repository at this point in the history
  • Loading branch information
soyjavi committed Dec 4, 2017
1 parent 44d25c6 commit 7d45d7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Header.js
Expand Up @@ -15,7 +15,7 @@ const Header = ({
<View style={[STYLE.ROW, styles.header, style]}>
<StatusBar
animated
backgroundColor={tintColor !== COLOR.WHITE ? COLOR.BLACK : COLOR.PRIMARY}
backgroundColor={tintColor !== COLOR.WHITE ? COLOR.WHITE : COLOR.PRIMARY}
barStyle={tintColor !== COLOR.WHITE ? 'dark-content' : 'light-content'}
/>
{ navigation &&
Expand Down
2 changes: 1 addition & 1 deletion src/screens/Loading/Loading.js
Expand Up @@ -47,7 +47,7 @@ class Loading extends Component {

return (
<View style={StyleSheet.flatten([STYLE.SCREEN, STYLE.CENTERED, styles.loading])}>
<StatusBar backgroundColor={COLOR.PRIMARY} barStyle="dark-content" />
<StatusBar backgroundColor={COLOR.PRIMARY} barStyle="light-content" />
<Logo motion={motion} />
</View>
);
Expand Down

0 comments on commit 7d45d7b

Please sign in to comment.