带有反应导航的自定义图标 5

Custom icons with react navigation 5

我正在尝试将自定义图标与 React 标签栏导航结合使用。但是,所有教程和文档 总是只覆盖通过 Ionicons 或 Materialdesign 实现图标。有什么方法可以实现我自己的图标吗?

代码如下所示:

<Tab.Navigator tabBarOptions={{
  inactiveTintColor: '#707070',
  activeTintColor: 'red',
  style: {
    backgroundColor: '#F1F1F1',
    height: 60,
    color: 'red',
    paddingBottom: 5
  }
}}>
  <Tab.Screen name="Bestellungen" component={BestellungenOverview}/>
  <Tab.Screen name="Kunden" component={KundenOverview} />
  <Tab.Screen name="Zahlungen" component={ZahlungenOverview} />
  <Tab.Screen name="Statistiken" component={StatistikenOverview} />
  <Tab.Screen name="Einstellungen" component={Einstellungen} />
</Tab.Navigator>

您需要将图标保存为字体。查看这些链接,看看它们是否有帮助:

https://www.reactnative.guide/12-svg-icons-using-react-native-vector-icons/12.1-creating-custom-iconset.html

https://medium.com/bam-tech/add-custom-icons-to-your-react-native-application-f039c244386c

您需要获取 .svg 文件,并使用 IcoMoon 等服务生成 .ttf 字体文件并将该字体加载到您的应用程序中。