UI issue coming after build android

I have not header and statusbar on Login screen so I have used below code on login screen
All these issues not coming in expo app

static navigationOptions = {
    header: null
 };
and 
async componentDidMount() {
    StatusBar.setHidden(true);
}

Its working fine for first time on login screen but after login home screen footer area goes hide!
It should be like below image

But its load first time like below image title goes hide

Code on home screen

componentDidMount() {
    StatusBar.setHidden(false);
  }

Using native base header method
<Header iosBarStyle=“light-content” androidStatusBarColor=“#03AE8F”> </Header>

After login kill application and open again that time home page design work fine but after logout login page work like homepage white space

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