Is there a single place in the react native iOS native code that I could modify to set iOS statusbar backgroundColor? RCTRootView.m ?
The react native StatusBar component only support backgroundColor for Android only.
The iOS operating system seems to allow setting status bar backgroundColor



iOS doesn't have a concept of a status bar bg. Here's how you'd achieve this in a cross-platform way:
Maybe it's not clear in the code, but the trick is to use
StatusBar, which works for Android, and create a "fake" status bar (aViewwithbackgroundColor) for IOS.