小程序
小游戏
企业微信
微信支付
扫描小程序码分享
小程序官方组件示例中的底部tabbar的darkmode是怎么适配的,就是下图中红框中的部分
直接配置dark model为true,然后添加tabBar,显示的还是白色的
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
使用了媒体查询,好像不行哟
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
处理方法:
1、在根路径上创建一个theme.json文件
2、在app.json用"themeLocation": "theme.json"引入
3、在theme.json中编辑两个样式
{ "light": { "navBackgroundColor": "#ffffff", "navTextStyle": "black" }, "dark": { "navBackgroundColor": "#000000", "navTextStyle": "white" } }
4、在app.json中将"navigationBarBackgroundColor": "@navBackgroundColor"和
"navigationBarTextStyle":"@navTextStyle"设置成变量就可以了。
参考:https://developers.weixin.qq.com/miniprogram/dev/framework/ability/darkmode.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
使用了媒体查询,好像不行哟
处理方法:
1、在根路径上创建一个theme.json文件
2、在app.json用"themeLocation": "theme.json"引入
3、在theme.json中编辑两个样式
{ "light": { "navBackgroundColor": "#ffffff", "navTextStyle": "black" }, "dark": { "navBackgroundColor": "#000000", "navTextStyle": "white" } }
4、在app.json中将"navigationBarBackgroundColor": "@navBackgroundColor"和
"navigationBarTextStyle":"@navTextStyle"设置成变量就可以了。
参考:https://developers.weixin.qq.com/miniprogram/dev/framework/ability/darkmode.html