【发布时间】:2019-04-14 08:17:52
【问题描述】:
所以我在 react native 中设置了背景图像,但我需要将背景图像的位置设置为底部。所以如果有人知道如何实现这一点。
我尝试添加 backgroundPosition 但似乎不受支持
<ImageBackground
source={require("../assets/img/bg-top.png")}
// resizeMethod={'auto'}
style={{
width: "100%",
height: 120,
padding: 20,
paddingVertical: 40,
backgroundPosition: "bottom" // not working
}}
imageStyle={{
resizeMode: "cover",
alignSelf: "flex-end"
}}
>
<Text style={{ color: "#D8D8D8", fontSize: 16 }}>Login</Text>
</ImageBackground>;
我希望图像对齐应该从底部开始,而不是从顶部开始
【问题讨论】:
标签: react-native