在我可以修改以设置iOS statusbar backgroundColor的react native iOS本机代码中是否有一个地方?RCTRootView.m吗?
该反应原生状态栏组件只支持的backgroundColor为仅适用于Android。
在我可以修改以设置iOS statusbar backgroundColor的react native iOS本机代码中是否有一个地方?RCTRootView.m吗?
该反应原生状态栏组件只支持的backgroundColor为仅适用于Android。
Answers:
iOS没有状态栏背景的概念。这是跨平台的方法:
import React, {
Component,
} from 'react';
import {
AppRegistry,
StyleSheet,
View,
StatusBar,
Platform,
} from 'react-native';
const MyStatusBar = ({backgroundColor, ...props}) => (
<View style={[styles.statusBar, { backgroundColor }]}>
<StatusBar translucent backgroundColor={backgroundColor} {...props} />
</View>
);
class DarkTheme extends Component {
render() {
return (
<View style={styles.container}>
<MyStatusBar backgroundColor="#5E8D48" barStyle="light-content" />
<View style={styles.appBar} />
<View style={styles.content} />
</View>
);
}
}
const STATUSBAR_HEIGHT = Platform.OS === 'ios' ? 20 : StatusBar.currentHeight;
const APPBAR_HEIGHT = Platform.OS === 'ios' ? 44 : 56;
const styles = StyleSheet.create({
container: {
flex: 1,
},
statusBar: {
height: STATUSBAR_HEIGHT,
},
appBar: {
backgroundColor:'#79B45D',
height: APPBAR_HEIGHT,
},
content: {
flex: 1,
backgroundColor: '#33373B',
},
});
AppRegistry.registerComponent('App', () => DarkTheme);
<Navigator.NavigationBar/>
组件在导航栏的其余部分中进行类似的修复,但无法使其正常工作(尝试了顶部边框并在其中插入了另一个组件)。有任何想法吗?
添加import { StatusBar } from 'react-native';
到您的顶部,app.js
然后添加StatusBar.setBarStyle('light-content', true);
为您的第一行,render()
以将状态栏文本/图标更改为白色。
其他颜色选项是'default'
和'dark-content'
。
请参阅https://facebook.github.io/react-native/docs/statusbar.html了解更多信息。
除此之外:不,您将必须点击提供的链接。
如果您使用react-native-navigation,则需要:
1-)将此添加到您的info.plist文件中:
<key>UIViewControllerBasedStatusBarAppearance</key>
<string>YES</string>
2-)在render()
函数的第一行,例如:
render(){
this.props.navigator.setStyle({
statusBarTextColorScheme: 'light'
});
return (
<Login navigator={this.props.navigator}></Login>
);
}
在react-native中设置iOS和Android状态栏backgroundColor
import React, { Component } from 'react';
import { Platform, StyleSheet, View, StatusBar } from 'react-native';
import Constants from 'expo-constants';
class Statusbar extends Component {
render() {
return (
<View style={styles.StatusBar}>
<StatusBar translucent barStyle="light-content" />
</View>
);
}
}
const styles = StyleSheet.create({
StatusBar: {
height: Constants.statusBarHeight,
backgroundColor: 'rgba(22,7,92,1)'
}
});
export default Statusbar;