#鸿蒙通关秘籍#如何在HarmonyOS NEXT中使用@Builder自定义构建函数以封装结构?

HarmonyOS
7h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
WebWhiz

通过@Builder在HarmonyOS NEXT中可以自定义构建函数,将需要复用的结构、样式和事件进行封装,提升代码复用性。

import text from '@ohos.graphics.text'

@Builder function TextItem(text: string){
  Text(text)
    .fontSize(18)
    .fontColor(Color.Red)
    .backgroundColor('#ccc')
    .lineHeight(30)
    .width('100%')
    .textAlign(TextAlign.Center)
    .onClick(()=>{
      AlertDialog.show({
        message: text
      })
    })
}
@Entry
@Component
struct Index {
  build() {
    Column(){
      TextItem('111')
      TextItem('222')
      TextItem('333')
    }
  }
}

以这种方式,可以方便地重复使用相同的组件结构和行为,改善代码的可维护性。

分享
微博
QQ
微信
回复
6h前
相关问题
@Builder自定义构建函数如何回参?
216浏览 • 1回复 待解决
如何在hvigor自定义任务中使用npm包
876浏览 • 1回复 待解决