本文主要是介绍【Harmony OS 4.0】类型定义,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1. Resource - 资源引用类型
// @Builder 自定义构建函数时,用 :Resource 表示资源引用类型
@Builder function CreateIcon (icon: Resource): void {Column() {Image(icon).width(28).height(28).objectFit(ImageFit.Contain).margin(10)}
}
2. ResourceColor - 颜色类型
3. Length - 长度类型
@Prop widthValue: Length = 0
4. Padding - 内边距类型
5. Margin - 外边距类型
6. BorderRadiuses - 圆角类型
7. Record
import router from '@ohos.router';onPageShow(): void {let account = router.getParams() as Record<string, number>if (account) {this.home_account = account['sendAccount']}}
这篇关于【Harmony OS 4.0】类型定义的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!