1

I faced with problem. My StatusBar in the app has zoomed like on screen below.

enter image description here

** App init:

    <Root>
      <StatusBar
        barStyle={'dark-content'} />
      <App />
   </Root>

** React-native v0.55.4 ** iPhone 8+

How to avoid this problem? Thank you for any answers!

Leonid Veremchuk
  • 1,952
  • 15
  • 27

1 Answers1

1

As per react-native docs status bar style dark-content type makes your text and icon bold.

StatusBarStyle

default - Default status bar style (dark for iOS, light for Android)

light-content - Dark background, white texts and icons

dark-content - Light background, dark texts and icons

In some case lauch images/lauch storyboard is reason for zoomed

Harshal Valanda
  • 5,331
  • 26
  • 63