ImageBackground在Expo构建中无法正常工作

时间:2020-02-23 07:17:14

标签: react-native expo

我用expo react native创建了一个应用程序。我已经在多部手机上对其进行了测试,它似乎工作正常。我刚刚用expo创建了一个apk版本,但是问题是它弄乱了我正在使用带有ImageBackground组件的图像的屏幕。以下是屏幕截图。

构建之前 enter image description here

构建后 enter image description here

<ImageBackground style={{width: undefined, height: undefined, flexDirection:'column', flex:1}} source={require('../../assets/background.png')}>
<View>
 ....components
</view>
</ImageBackground>

我也在代码中使用此功能,仅针对此屏幕自动旋转屏幕

async changeScreenOrientation() {
    await ScreenOrientation.lockAsync(ScreenOrientation.OrientationLock.LANDSCAPE_LEFT);
}

0 个答案:

没有答案