我尝试将png图片放在视图中间。但是它没有出现。
当我更改代码中的某些内容时,虽然出现了图像,但是图像却很大。我无法解决此问题。
<View style={{position: 'relative',alignItems:'center',flex:1}}>
<LinearGradient colors={['#DDDCDC', '#856F6F']} style= {{opacity: 0.6,flex:1}}>
</LinearGradient>
<View style={{position:'absolute', height:60,bottom:0}}>
<ImageBackground source={require('../../image/datalog.png')} style={{height: '100%',width:'100%'}} >
</ImageBackground>
</View>
</View>