пожалуйста, попробуйте этот код
import React, { Component } from 'react';
import { StyleSheet, View, StatusBar, Text, Platform } from 'react-native';
export default class Myproject extends Component {
render() {
return (
<View style={styles.MainContainer}>
<StatusBar
barStyle="dark-content"
hidden={false}
backgroundColor="#fff"
translucent={true}
networkActivityIndicatorVisible={true}
/>
<Text style={{ textAlign: 'center', fontSize: 25 }}> React Native Status Bar Example Tutorial </Text>
</View>
);
}
}
const styles = StyleSheet.create({
MainContainer: {
backgroundColor: 'red',
justifyContent: 'center',
flex: 1,
marginTop: (Platform.OS == 'ios') ? 30 : 0
}
});