我正在学习react react本地且有错误这是我的代码
import React, {Component} from 'react';
import {View, ImageBackground, StyleSheet, Text} from 'react-native';
export default class Welcome extends Component{
render() {
return (
<ImageBackground source={require('./Image_app/welcome.jpg')} style={styles.container} >
<View style={styles.container}>
<Text style={styles.headerText}>
Setting background image in react native application
</Text>
</View>
</ImageBackground>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: "center",
alignItems: 'center',
width: null,
height: null,
},
headerText: {
fontSize: 24,
textAlign: "center",
margin: 10,
color: "white",
fontWeight: "bold"
}
});
和这个错误在此处输入图像描述
我来源中的一个文件夹图像在此处输入图像描述
关闭捆绑器,删除您的node_modules
,通过npm i
重新安装所有内容,然后重新启动Bundler。那应该解决您的问题。