HMDemo/app/src/main/ets/pages/component/SVGPage.ets
2024-05-16 14:04:49 +08:00

16 lines
415 B
Plaintext

import { CommonRes } from '@devwiki/common_ui/Index'
@Entry
@Component
export struct SVGPage {
build() {
Column() {
Text().width(96).height(96).backgroundColor($r('app.media.ic_eye_off'))
.linearGradient({
angle: 90,
colors: [[0xff0000, 0.0], [0x0000ff, 0.3], [0xffff00, 1.0]],
repeating: true
})
}.height('100%').justifyContent(FlexAlign.Center)
}
}