0

我有一个反应原生的应用程序。

我有一个应用程序,但是当我使用图标(react-native-vector-icons)时,图标以日语显示,例如:

我要使用的图标是“添加”

图标

但是当我在我的应用程序上显示这样的图标时:

漏洞

这个应用程序的代码是:

代码

代码:

const App = () => {
  return (
    <>
      <StatusBar barStyle="dark-content" />
      <SafeAreaView>
        <ScrollView
          contentInsetAdjustmentBehavior="automatic"
          style={styles.scrollView}>
          <Header />
          <View style={styles.body}>
            <View style={styles.sectionContainer}>
              <Text style={styles.sectionTitle}>Step One</Text>
              <Text style={styles.sectionDescription}>
                Edit <Text style={styles.highlight}>App.js</Text> to change this
                screen and then come back to see your edits.
                <Icon name="add" color="#000" size={22} />
              </Text>
          </View>
        </ScrollView>
      </SafeAreaView>
    </>
  );
};
});

React-native 医生:

 Common
 ✓ Node.js
 ✓ yarn

Android
 ✖ JDK
   - Version found: 1.8.0_265
   - Version supported: >= 8
 ✖ Android Studio - Required for building and installing your app on Android
 ✓ Android SDK - Required for building and installing your app on Android
 ✓ ANDROID_HOME

Errors:   2
Warnings: 0

Usage
 › Press f to try to fix issues.
 › Press e to try to fix errors.
 › Press w to try to fix warnings.
 › Press Enter to exit.

4

1 回答 1

0

遇到了同样的问题。按照此说明:
编辑 android/app/build.gradle ( NOT android/build.gradle ) 并添加以下内容:
应用来自:“../../node_modules /react-native-vector-icons/fonts .gradle”

并重建。

于 2020-10-23T14:13:07.233 回答