#鸿蒙通关秘籍#在DevEco Studio中,我该如何操作才能查看和调整代码高亮设置?

HarmonyOS
2024-11-29 13:08:48
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
DL梦绘江山

你可以在 File > Settings > Editor > Color Scheme 中查看和管理代码高亮设置。

// 修改完,可以参考这段代码查看高亮效果

Stack() {
Row() {

}
.width(100)
.height(34)
.borderRadius(40)
.backgroundColor($r('app.color.plan_text_button'))
.shadow({
radius: 20,
color: $r('app.color.complementary_colors')
})

Text(TextEnumData(this.state))
.fontWeight(800)
.fontColor($r('app.color.complementary_colors'))
}
.position({ bottom: this.currentState === this.state ? 6 : 0 })

}
已于2024-12-19 18:54:57修改
分享
微博
QQ
微信
回复
2024-11-29 16:05:50
相关问题