INNER CODE UNIT · JavaScript
App
yuvraj24/WhatsApp-Clone · app-client/App.js:19
const App = () => {
return (
<View style={{flex: 1, flexDirection: 'column'}}>
{Platform.OS === 'ios' && (
<View
//To set the background color in IOS Status Bar also
style={{
backgroundColor: GREEN,
height: Platform.OS === 'ios' ? 50 : StatusBar.currentHeight,
}}>
<StatusBar barStyle="light-content" backgroundColor={GREEN} />
</View>
)}
{Platform.OS === 'android' && (
<StatusBar barStyle="light-content" backgroundColor={GREEN} />
)}
<AppNavigator />