React Native Paper - 无法识别的字体系列 'Material Icons'

React Native Paper - Unrecognized font family 'Material Icons'

我正在创建一个新的 React Native 应用程序并使用 React-Native-Paper。这是 不是 Expo 应用程序,而是普通的 React 本机应用程序。

react native版本是>0.6.0,我已经按照react-native-paper安装的步骤做了https://callstack.github.io/react-native-paper/getting-started.html

react-native-paper组件的使用方式如下

<Avatar.Icon size={24} icon="folder" />

但是当我运行应用程序使用命令react-native run-ios时编译成功并且应用程序打开但是红屏出现如下

找到解决方案。

我必须将以下内容添加到 info.plist

<key>UIAppFonts</key>
<array>
  <string>AntDesign.ttf</string>
  <string>Entypo.ttf</string>
  <string>EvilIcons.ttf</string>
  <string>Feather.ttf</string>
  <string>FontAwesome.ttf</string>
  <string>FontAwesome5_Brands.ttf</string>
  <string>FontAwesome5_Regular.ttf</string>
  <string>FontAwesome5_Solid.ttf</string>
  <string>Foundation.ttf</string>
  <string>Ionicons.ttf</string>
  <string>MaterialIcons.ttf</string>
  <string>MaterialCommunityIcons.ttf</string>
  <string>SimpleLineIcons.ttf</string>
  <string>Octicons.ttf</string>
  <string>Zocial.ttf</string>
</array>