【发布时间】:2021-05-10 03:24:18
【问题描述】:
我到处看了看,不知道为什么我的背景图像不工作路径很好,我已经尝试了一切,从将它包装在一个视图中,给它一个宽度和高度。它都不起作用。我是新手,所以我不知道这是一个常见的问题。登录按钮显示得很好,它纯粹是 bg 图像。 代码如下:
import React from "react";
import { ImageBackground, StyleSheet, Image, View } from "react-native";
function WelcomeScreen(props) {
return (
<View>
<ImageBackground
style={styles.background}
source={require("../assets/background.jpg")}
>
<View style={styles.loginButton}></View>
</ImageBackground>
</View>
);
}
const styles = StyleSheet.create({
background: {
flex: 1,
},
loginButton: {
width: "100%",
height: 70,
backgroundColor: "#fc5c65",
},
});
【问题讨论】:
标签: android ios react-native mobile