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 上总是返回光


基础教程推荐
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01