W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
如果每個組件的樣式都需要單獨設(shè)置,在開發(fā)過程中會出現(xiàn)大量代碼在進行重復(fù)樣式設(shè)置,雖然可以復(fù)制粘貼,但為了代碼簡潔性和后續(xù)方便維護,我們推出了可以提煉公共樣式進行復(fù)用的裝飾器@Styles。
@Styles裝飾器可以將多條樣式設(shè)置提煉成一個方法,直接在組件聲明的位置調(diào)用。通過@Styles裝飾器可以快速定義并復(fù)用自定義樣式。用于快速定義并復(fù)用自定義樣式。
從API version 9開始,該裝飾器支持在ArkTS卡片中使用。
- // 反例: @Styles不支持參數(shù)
- @Styles function globalFancy (value: number) {
- .width(value)
- }
- // 全局
- @Styles function functionName() { ... }
- // 在組件內(nèi)
- @Component
- struct FancyUse {
- @Styles fancy() {
- .height(100)
- }
- }
- @Component
- struct FancyUse {
- @State heightValue: number = 100
- @Styles fancy() {
- .height(this.heightValue)
- .backgroundColor(Color.Yellow)
- .onClick(() => {
- this.heightValue = 200
- })
- }
- }
框架優(yōu)先找當前組件內(nèi)的@Styles,如果找不到,則會全局查找。
- // 定義在全局的@Styles封裝的樣式
- @Styles function globalFancy () {
- .width(150)
- .height(100)
- .backgroundColor(Color.Pink)
- }
- @Entry
- @Component
- struct FancyUse {
- @State heightValue: number = 100
- // 定義在組件內(nèi)的@Styles封裝的樣式
- @Styles fancy() {
- .width(200)
- .height(this.heightValue)
- .backgroundColor(Color.Yellow)
- .onClick(() => {
- this.heightValue = 200
- })
- }
- build() {
- Column({ space: 10 }) {
- // 使用全局的@Styles封裝的樣式
- Text('FancyA')
- .globalFancy ()
- .fontSize(30)
- // 使用組件內(nèi)的@Styles封裝的樣式
- Text('FancyB')
- .fancy()
- .fontSize(30)
- }
- }
- }
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: