Dark Mode: useColorScheme() always returns light on Android(暗模式:useColorScheme() 在 Android 上总是返回光)
问题描述
我正在尝试让深色模式工作,但它在 Android 上不起作用.它总是返回光".在 iOS 上运行良好.
I am trying to get Dark Mode to work and it doesn't work on Android. It always returns "light". On iOS it works fine.
import React from 'react';
import { useColorScheme } from "react-native";
export default function App() {
const theme = useColorScheme();
alert("your color scheme is: " + theme); // always returns "light" on Android
return null;
}
我正在使用 Expo SDK 42.
I am using Expo SDK 42.
我把 "userInterfaceStyle": "automatic" 放在我的 app.json 中,但没有任何区别.
I put "userInterfaceStyle": "automatic" in my app.json but it doesn't make a difference.
推荐答案
我想通了.仅仅将 "userInterfaceStyle": "automatic" 放在 app.json 根目录中是不够的,我还必须为 iOS 和 Android 单独定义它:
I figured it out. It was not enough to just put "userInterfaceStyle": "automatic" in app.json root, I had to define it for iOS and Android individually too:
app.json:
{
"expo": {
"userInterfaceStyle": "automatic",
"ios": {
"userInterfaceStyle": "automatic"
},
"android": {
"userInterfaceStyle": "automatic"
}
}
}
这篇关于暗模式:useColorScheme() 在 Android 上总是返回光的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:暗模式:useColorScheme() 在 Android 上总是返回光
基础教程推荐
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
