gpt4 book ai didi

ios - 将 ImageBackground 调整为全屏

转载 作者:行者123 更新时间:2023-11-29 13:56:24 39 4
gpt4 key购买 nike

我已经提供了一个 ImageBackground 组件,我希望它占据整个屏幕,但即使我将图像的大小调整两倍或更多,它似乎也有小填充。它从哪里来?

enter image description here

Here is the code of the component

import React from "react";
import { View, Text, Button, ImageBackground, StyleSheet } from "react-
native";

export class HomeScreen extends React.Component {

static navigationOptions = {
//To hide the NavigationBar from current Screen
header: null
};

render() {
return (
<ImageBackground source={require('../imgs/bgx.png')} style={
styles.container }>
</ImageBackground>
);
}


}

var styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'stretch',
resizeMode: 'stretch'
}
});

最佳答案

确保您的源图像周围没有有任何透明度。

width: '100%'height: '100%' 设置为 ImageBackground 组件。它会改变什么吗?

关于ios - 将 ImageBackground 调整为全屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55523925/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com