With expo I can import { Constants } from 'expo';
and set in styles paddingTop: Constants.statusBarHeight
.
But we have <StatusBar />
Component in React Native.
I want to know is there some way to do that with React Natives <StatusBar />
Component's props not from style like in expo.
Edit: I don't want to get the status bar height. I want to know is there more better way to set my main View
-s top padding as status bar height.