HarmonyOS 同一个颜色值,为啥backgroundColor和linearGradient显示的不一样

demo代码:

import { promptAction } from '@kit.ArkUI';
@Entry
@Component
struct Index23123 {
  build() {
    Column(){
      Row()
        .height(100)
        .width('100%')
        .backgroundColor('0x0A1B1B1B')
      Row()
        .height(100)
        .width('100%')
        .linearGradient({
          direction: GradientDirection.Left,
          colors: [[0x0A1B1B1B, 0.0],
            [0x0A1B1B1B, 1.0]]
        })
    }
  }
}
HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
FengTianYa

backgroundColor使用HEX格式的颜色不需要加引号,请将引号去掉:

Row()
  .height(100)
  .width('100%')
  .backgroundColor(0x0A1B1B1B)
分享
微博
QQ
微信
回复
2天前
相关问题
鸿蒙安卓有什么不一样
6483浏览 • 3回复 待解决
Web组件获取高度不一样
2323浏览 • 1回复 待解决
#鸿蒙通关秘籍#HSPHAR有啥不一样
144浏览 • 1回复 待解决