设置局部深浅色时,需要添加dark.json资源文件,深浅色模式才会生效。 { "color": [ { "name": "start_window_background", "value": "#FFFFFF" } ] }// 指定局部深浅色模式 @Entry @Component struct Index { build() { Column() { // 系统默认 Column() { Text('无WithTheme') .fontSize(40) .fontWeight(FontWeight.Bold) } .justifyContent(FlexAlign.Center) .width('100%') .height('33%') .backgroundColor($r('sys.color.background_primary')) // 设置组件为深色模式 WithTheme({ colorMode: ThemeColorMode.DARK }) { Column() { Text('WithTheme') .fontSize(40) .fontWeight(FontWeight.Bold) Text('DARK') .fontSize(40) .fontWeight(FontWeight.Bold) } .justifyContent(FlexAlign.Center) .width('100%') .height('33%') .backgroundColor($r('sys.color.background_primary')) } // 设置组件为浅色模式 WithTheme({ colorMode: ThemeColorMode.LIGHT }) { Column() { Text('WithTheme') .fontSize(40) .fontWeight(FontWeight.Bold) Text('LIGHT') .fontSize(40) .fontWeight(FontWeight.Bold) } .justifyContent(FlexAlign.Center) .width('100%') .height('33%') .backgroundColor($r('sys.color.background_primary')) } } .height('100%') .expandSafeArea([SafeAreaType.SYSTEM], [SafeAreaEdge.TOP, SafeAreaEdge.END, SafeAreaEdge.BOTTOM, SafeAreaEdge.START]) } }本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。
本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。