I\'m using NativeBase with Exponent. The Header goes beneath the phone\'s StatusBar. You can see this in the NativeBase demo that Exponent released.
Does anyone
Old post but recently I've faced same issue with Expo. And I overcome this issue by adding this line to app.json file.
"androidStatusBar": { "backgroundColor": "#000000" }
app.json file
{
"expo": {
"name": "You App Name",
"androidStatusBar": {
"backgroundColor": "#000000"
}
}
}
That solved my issue. I think this may help to others.