Skip to content

Commit

Permalink
Merge pull request #15771 from Expensify/jules-revertPR15656
Browse files Browse the repository at this point in the history
Revert "Make status bar transparent on android"

(cherry picked from commit 743bfa6)
  • Loading branch information
Julesssss authored and OSBotify committed Mar 9, 2023
1 parent e885e91 commit b586593
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/CustomStatusBar/index.android.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from 'react';
import {StatusBar} from 'react-native';
import themeColors from '../../styles/themes/default';

/**
* Only the Android platform supports "setBackgroundColor"
Expand All @@ -8,8 +9,7 @@ import {StatusBar} from 'react-native';
export default class CustomStatusBar extends React.Component {
componentDidMount() {
StatusBar.setBarStyle('light-content');
StatusBar.setBackgroundColor('transparent');
StatusBar.setTranslucent(true);
StatusBar.setBackgroundColor(themeColors.appBG);
}

render() {
Expand Down

0 comments on commit b586593

Please sign in to comment.