往期鸿蒙全套实战精彩文章必看内容:
如何使应用一键变灰
通过设置页面根容器的饱和度saturate来实现。
参考代码如下:
@Entry
@Component
struct Index {
@State message: string = 'Hello World'
build() {
Row() {
Column() {
Text(this.message)
.fontSize(50)
.fontWeight(FontWeight.Bold)
Image($r("app.media.icon"))
.autoResize(true)
.width(100)
.height(100)
}
}
.width('100%')
.height('100%')
.saturate(0)
}
}