答案 0 :(得分:1)
您可以使用StatusBar
(https://reactnative.dev/docs/statusbar)
import { StatusBar } from 'react-native';
// ...
StatusBar.setBackgroundColor("#000000");
答案 1 :(得分:0)
答案 2 :(得分:0)
好问题!
您可以使用react-native StatusBar标签:
只需执行以下操作:
import React, { Component } from 'react';
import { Platform, StyleSheet, View, StatusBar } from 'react-native';
import Constants from 'expo-constants';
class MyStatusbar extends Component {
render() {
return (
<View style={styles.StatusBar}>
<StatusBar translucent barStyle = "light-content" />
</View>
);
}
}
const styles = StyleSheet.create({
StatusBar: {
height: Constants.statusBarHeight,
backgroundColor: '#6a11cb'
}
});
export default MyStatusbar;
以及您希望状态栏使用的位置:
import MyStatusbar from './file-location'
和return(); :
<MyStatusbar />