我已经给出了一个ImageBackground组件,并且希望它占据整个屏幕,但是即使我将图像的大小调整了两倍或更多,它似乎也具有很小的填充。它来自哪里?
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/