无法解析来自的模块;反应本机

时间:2020-05-11 07:24:31

标签: reactjs xcode react-native ecmascript-6 expo

我最近弹出了我的react native expo应用程序,并试图在ios模拟器上启动它。 但是当我做本地反应的运行ios时出现此错误。代码使用expo运行正常,没有错误: enter image description here

这是我的RdvScreen.js代码:

import React from 'react';
import {View,Text,Button,StyleSheet,} from 'react-native'
import { ProgressSteps, ProgressStep } from 'react-native-progress-steps';

import Recap from './RécapitulatifScreen';
import MyComponent from '../Components/RadioButton';
import Identification from './IdentificationScreen';
class RDV extends React.Component {

    render(){
    return (
      <View style={styles.container}>

        <ProgressSteps>
            <ProgressStep label="Identification " nextBtnText="Suivant" >

                    <Identification />

            </ProgressStep>
        <ProgressStep label=" Motif" nextBtnText="Suivant" previousBtnText="Précédent" >
                <View style={{ alignItems: 'center' }}>
                    <MyComponent/>
                </View>
        </ProgressStep>
        <ProgressStep label="Récapitulatif" nextBtnText="Suivant" previousBtnText="Précédent" >
            <Recap/>
        </ProgressStep>
        <ProgressStep label="Confirmation" previousBtnText="Précédent" finishBtnText='Confirmer' onSubmit={()=> alert("Félicitation, votre rendez-vous est confirmé !")} >
            <View style={{ alignItems: 'center' }}>
                <Text>Confirmez votre rendez-vous</Text>
            </View>
        </ProgressStep>
    </ProgressSteps>
    </View>

    );
  }

}

这是我的项目路径: enter image description here

感谢您的帮助

2 个答案:

答案 0 :(得分:1)

您需要更改两个文件。

屏幕->RécapitulatifScreen到RecapitulatifScreen

在屏幕文件夹下

opne RdvScreen.js并将行号5替换为

从“ ./RecapitulatifScreen”导入摘要;

答案 1 :(得分:0)

绝对是Packager问题

强力解决方案

resolve(this.aadharValues)

watchman watch-del-all && rm -rf node_modules/ && npm cache clean --force&& npm install && npm start -- --reset-cache