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
There is a simple solution for this problem just import StatusBar component and use this tag:
for example in a page:
/*
Page with no statusbar
*/
import React, {Component} from 'react'
import {Platform, View, Text, StatusBar} from 'react-native'
export default class App extends React.Component{
render(){
return(
Hello World
);
}
}
This Component work well with expo and react-native-cli latest virsions. for more help you can use ReactNative docs for StatusBar