gpt4 book ai didi

javascript - react-navigation:如何根据当前选项卡更改 tabBar 颜色

转载 作者:数据小太阳 更新时间:2023-10-29 05:09:26 24 4
gpt4 key购买 nike

我开始使用 react-navigation。
如何在更改标签时更改标签栏背景颜色?

这是一些伪代码,显示了我所希望的:

_backgroundColor = function() { 
switch (this.routeName) {
case 'tabHome': return { backgroundColor: '#002663' };
case 'tabRewards': return { backgroundColor: '#3F9C35' };
default: return { backgroundColor: 'white' }
}
}

// Tabs setup
export const TabStack = TabNavigator({
tabHome: { screen: HomeStack, },
tabRewards: { screen: RewardsStack, },
}, {
tabBarOptions: {
style: _backgroundColor(),
}
});

目前它总是默认为白色(这很好,因为我的代码是错误的:-) 所以我如何传递一些东西,它在 routeName 或 iconLabel 或其他什么上触发这个逻辑。

如有任何帮助,我们将不胜感激。
提前致谢。
干杯

最佳答案

import React from 'react';
import { Image, View } from 'react-native';
import { StackNavigator, TabNavigator, TabBarBottom } from 'react-navigation';

const Screen = () => <View />;

const Tabs = TabNavigator(
{
Tab1: {
screen: Screen,
navigationOptions: {
title: 'Tab1',
tabBarIcon: ({ tintColor }) =>
(<Image
source={require('../images/iconNotificationNew.png')}
style={[{ tintColor }]}
/>),
},
},
Tab2: {
screen: Screen,
navigationOptions: {
title: 'Tab2',
tabBarIcon: ({ tintColor }) =>
(<Image
source={require('../images/iconNotificationNew.png')}
style={[{ tintColor }]}
/>),
},
},
Tab3: {
screen: Screen,
navigationOptions: {
title: 'Tab3',
tabBarIcon: ({ tintColor }) =>
(<Image
source={require('../images/iconNotificationNew.png')}
style={[{ tintColor }]}
/>),
},
},
},
{
lazy: true,
tabBarComponent: props => {
const backgroundColor = props.position.interpolate({
inputRange: [0, 1, 2],
outputRange: ['orange', 'white', 'green'],
})
return (
<TabBarBottom
{...props}
style={{ backgroundColor: backgroundColor }}
/>
);
},
swipeEnabled: true,
animationEnabled: true,
tabBarPosition: 'bottom',
initialRouteName: 'Tab2',
tabBarOptions: {
activeTintColor: 'blue',
inactiveTintColor: 'grey',
},
},
);

输出

on Tab2 Selection

on Tab1 Selection

on Tab3 Selection

关于javascript - react-navigation:如何根据当前选项卡更改 tabBar 颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42910540/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com