我在我的React Native应用程序中实现了React Navigation,我想改变标题的背景和前景色。我有以下内容:
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View
} from 'react-native';
import { StackNavigator } from 'react-navigation';
export default class ReactNativePlayground extends Component {
static navigationOptions = {
title: 'Welcome',
};
render() {
return (
<View style={styles.container}>
<Text style={styles.welcome}>
Welcome to React Native!
</Text>
<Text style={styles.instructions}>
To get started, edit index.android.js
</Text>
<Text style={styles.instructions}>
Double tap R on your keyboard to reload,{'\n'}
Shake or press menu button for dev menu
</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
});
const SimpleApp = StackNavigator({
Home: { screen: ReactNativePlayground }
});
AppRegistry.registerComponent('ReactNativePlayground', () => SimpleApp);
默认情况下,标题的背景色是白色,前景是黑色。我也看了React Navigation的文档,但我找不到它显示如何设置样式的地方。有帮助吗?
6条答案
按热度按时间wwwo4jvm1#
在较新版本的React Navigation中,你有一个更扁平的设置对象,如下所示:
不推荐答案:
根据文档,在这里,您可以修改navigationOptions对象。尝试如下操作:
请不要真的使用这些颜色!
kninwzqo2#
根据文档,您可以像这样使用“navigationOptions”样式。
有关navigationOptions的更多信息,您也可以从文档中阅读:-
https://reactnavigation.org/docs/navigators/stack#Screen-Navigation-Options
iszxjhcz3#
试试这个工作代码
sy5wg1nm4#
注意!
navigationOptions
是Stack Navigation
和Drawer Navigation
之间的差值堆栈导航已解决。
但对于抽屉导航,您可以添加自己的标题并使用
contentComponent
Config创建样式:第一个
import { DrawerItems, DrawerNavigation } from 'react-navigation'
然后DrawerItems
前表头:contentComponent: props => <ScrollView><Text>Your Own Header Area Before</Text><DrawerItems {...props} /></ScrollView>
.DrawerItems
后页脚:contentComponent: props => <ScrollView><DrawerItems {...props} /><Text>Your Own Footer Area After</Text></ScrollView>
.gev0vcfq5#
请尝试以下代码:
祝你好运!
mwngjboj6#
百分之百有效。