How can I find the height of the status bar on Android through React Native?
If I check the React.Dimensions height the value seems to include the status ba
React.Dimensions
import Constants and Dimensions.
import Constants from 'expo-constants'; import Dimensions from 'react-native';
in stylesheet container hight - status bar hight = without status hight.
container: { height: Dimensions.get('window').height - Constants.statusBarHeight,}