我最近弹出了我的react native expo应用程序,并试图在ios模拟器上启动它。 但是当我做本地反应的运行ios时出现此错误。代码使用expo运行正常,没有错误:
这是我的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>
);
}
}
感谢您的帮助
答案 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