如何在React Native Expo应用程序中强制灯光模式?

问题描述 投票:0回答:1

我已经尝试过

Appearance.set({ colorScheme: 'light' });
"userInterfaceStyle": "light"
,但我的应用程序仍然强制白色变为黑色。

react-native expo
1个回答
0
投票

认为您需要查看您的配置。根据 app.json 中的docs,您应该使用:

{
  "expo": {
    "userInterfaceStyle": "light"
  }
}

并验证是否存在您应该安装的问题

expo-system-ui

并验证是否存在问题,运行命令:

npx expo config --type introspect
© www.soinside.com 2019 - 2024. All rights reserved.