How to delete paddings in statusbar on android after update expo client?

Sorry for my english :slight_smile:.

Hello everyone! :smiley:. I have one issues, after update expo client on android in status bar added auto paddings, how can i delete it? On iOS all ok.

Andorid:

Having the same issue on Android emulator (Genymotion) but it is fine on real physical Android device. Any solution?

Hello! I found solution.

 <StatusBar barStyle="light-content" translucent={true} backgroundColor={'#0000005e'}/>

Just add props translucent set as true and backgroundColor.

Or

if(Platform.OS === 'ios') {
Add status bar only on IOS.
}

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.