REACT本机错误代码500使用ImageBackground时



我正在学习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。那应该解决您的问题。

相关内容

  • 没有找到相关文章

最新更新