有没有办法将背景图像添加到底部导航栏
我尝试使用选项卡栏组件,但没有帮助。
我使用的代码是
//Navigation Options
<Tab.Navigator
tabBarOptions={{
showLabel: false,
activeTintColor: '#656565',
inactiveTintColor: '#353B48',
style: {
backgroundColor: 'transparent',
},
}
}>
</Tab.Navigator>
}```
我认为唯一的选择是构建自己的自定义tabBar+图标等:并将ImageBackground
而不是View
用于您的图像。
tabBar={(f) => (
<View style={{ backgroundColor: 'red', height: 100 }}>
{console.log(f.state.routeNames)}
</View>
)}