在 React Native Expo 应用程序中禁用分屏
Disable split screen in react native expo app
有人知道如何在 React native expo 应用程序中禁用分屏吗?。我在文档中找到了这个解决方案,但仅适用于 ios。提前致谢
Open your app.json and add the following inside of the "expo" field:
{
"expo": {
...
"ios": {
...
"requireFullScreen": true,
}
}
}
在您的 AndroidManifest.xml 文件中添加以下内容:
<activity android:name=".MainApplication"
android:resizeableActivity="false"
/>
有人知道如何在 React native expo 应用程序中禁用分屏吗?。我在文档中找到了这个解决方案,但仅适用于 ios。提前致谢
Open your app.json and add the following inside of the "expo" field:
{
"expo": {
...
"ios": {
...
"requireFullScreen": true,
}
}
}
在您的 AndroidManifest.xml 文件中添加以下内容:
<activity android:name=".MainApplication"
android:resizeableActivity="false"
/>