0

I'm using React Native. I haven't done iOS stuff in a while, I remember in the pre React Native days (or rather, older versions of iOS) you didn't have as much control over the status bar. But now, it's easy-pz. I can easily get rid of it.

The reason I'm asking is because if I can guarantee it's gone, I don't see why keep it all, and I'll just use the space to move the nav bar up and give more space to the content.

Perhaps someone would like to enlighten me.

faceyspacey.com
  • 2,510
  • 2
  • 20
  • 29

2 Answers2

0

Yes, you have a complete control over the status bar.

You can easily hide it.

Check the docs here for more information on the matter.

G. Hamaide
  • 7,078
  • 2
  • 36
  • 57
0

simple add this to your render function:

<StatusBar hidden={true}/>
Kaleb Portilho
  • 1,181
  • 16
  • 20