web-dev-qa-db-ja.com

エラー:バンドルに失敗しました:エラー:モジュール `react-native-vector-icons / Feather`を解決できません

In React native私は単にreactnativeライブラリからFlatlistを適用しています。すべてのライブラリが正常にインストールされました

pakage.json

  "dependencies": {
    "feather-icons-react": "^0.3.0",
    "react": "16.6.3",
    "react-native": "0.57.8",
    "react-native-elements": "^1.0.0-beta7",
    "react-native-vector-icons": "^4.2.0"
  },
  "devDependencies": {
    "babel-jest": "23.6.0",
    "jest": "23.6.0",
    "metro-react-native-babel-preset": "0.51.0",
    "react-test-renderer": "16.6.3"
  },
  "jest": {
    "preset": "react-native"
  }
}

App.js

import React, {Component} from 'react';
import Main from './components/MainComponents';

const instructions = Platform.select({
  ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
  Android:
    'Double tap R on your keyboard to reload,\n' +
    'Shake or press menu button for dev menu',
});

type Props = {};
export default class App extends Component<Props> {
  render() {
    return (

        <Main />

    );
  }
}

エラーログ

    error: bundling failed: Error: Unable to resolve module `react-native-vector-icons/Feather` from `F:\React Native\FirstProject\node_modules\react-native-elements\src\helpers\getIconType.js`: Module `react-native-vector-icons/Feather` does not exist in the Haste module map

ネイティブに反応する初心者

助けていただければ幸いです

ありがとうございました

3
Muhammad Ashfaq

React-native-vector-iconsをインストールするには、インストールしてからリンクする必要があります。ファーストラン:
npm install react-native-vector-icons --save
または糸を使用する場合
yarn add react-native-vector-icons

次に、次のようにリンクする必要があります。
react-native link react-native-vector-icons

2
Vincent D'amour
  1. 実行中のパッケージャーを閉じる

  2. react-nativeリンクreact-native-vector-iconsを実行します

  3. react-nativestartを実行します--reset-cache

  4. 最後にreact-nativerun-iosを使用します

0
Isaac