- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 bottomTab 上的图标出现渲染问题,我使用 react-native-vector-icons 和 Ionicons 包。我尝试了几个图标,但结果仍然相同。我附上了一些对您有帮助的元素。
你也可以在这里看到导入
import React, {Component} from 'react';
import 'react-native-gesture-handler';
import {Animated} from 'react-native';
import {NavigationContainer} from '@react-navigation/native';
import {createBottomTabNavigator} from '@react-navigation/bottom-tabs';
import Icon from 'react-native-vector-icons/Ionicons';
import Setting from '../Settings/Setting';
import Decibel from '../Decibel';
import Dashboard from '../Dashboard';
import Classement from '../Classement/Classement';
import ChoixSport from '../ChoixEquipes/ChoixSport';
const Tab = createBottomTabNavigator();
这里是我的代码
render() {
return (
<Tab.Navigator
initialRouteName="Dashboard"
tabBarOptions={{
activeBackgroundColor: '#000000',
activeTintColor: '#CFF932',
inactiveBackgroundColor: '#000000',
}}>
<Tab.Screen
name="Dashboard"
component={Dashboard}
options={{
tabBarIcon: ({color, size}) => (
<Icon name="ios-home" size={size} color={color} />
),
}}
/>
<Tab.Screen name="Settings" component={Setting} />
感谢大家的宝贵时间和帮助!
最佳答案
你可以在这里看到
https://github.com/react-navigation/react-navigation/issues/6867
这里
https://github.com/oblador/react-native-vector-icons/issues/1117
React Native Vector Icons 的其他用户也经历过同样的事情。
您可以在下面的评论中查看解决方案
https://github.com/oblador/react-native-vector-icons/issues/1117#issuecomment-589958315
需要检查是否在Android部分添加了这个配置。
您可以在 React Native Vector Icons 的文档中查看更多详细信息:
https://github.com/oblador/react-native-vector-icons#android
关于react-native - 问题 图标显示 BottomTabNav React-native,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64210654/
我的 bottomTab 上的图标出现渲染问题,我使用 react-native-vector-icons 和 Ionicons 包。我尝试了几个图标,但结果仍然相同。我附上了一些对您有帮助的元素。
我是一名优秀的程序员,十分优秀!