AndreiRadchenko / scenery

Scenery is a social media app where you can share your stunning photos of nature with like-minded naturalists.
https://play.google.com/store/apps/details?id=com.andriiradchenko.scenery
0 stars 0 forks source link

StatusBar style different between standalone app and expo app #28

Open AndreiRadchenko opened 5 months ago

AndreiRadchenko commented 5 months ago

On Android release .apk main view doesn't cover status bar. In Expo Go and development build it does. https://github.com/expo/expo/issues/3874

AndreiRadchenko commented 5 months ago

To fix it, I'd added next code to the app.js after import

import { StatusBar, Platform } from 'react-native';

StatusBar.setBarStyle('dark-content');

if (Platform.OS === 'android') {
  StatusBar.setTranslucent(true);
  StatusBar.setBackgroundColor('transparent');
}