鸿蒙头部封装代码可以直接使用
·
import { router } from '@kit.ArkUI'
@Component
export struct HcNavBar {
@StorageProp('topAreaHeight')
topHeight: number = 0
// 标题文字
@Prop
title: string = ''
// 是否有下边框
@Prop
showBorder: boolean = false
// 左边图标
@Prop
leftIcon: ResourceStr = $r('app.media.ic_common_back')
// 右边图标
@Prop
rightIcon: ResourceStr = $r('sys.media.ohos_ic_public_more')
// 是否显示右边图标
@Prop
showRightIcon: boolean = true
build() {
Row({ space: 16 }) {
Image(this.leftIcon)
.size({ width: 24, height: 24 })
.fillColor($r('app.color.black'))
.onClick(() => router.back())
Row() {
if (this.title) {
Text(this.title)
.fontWeight(600)
.layoutWeight(1)
.textAlign(TextAlign.Center)
.fontSize(18)
.maxLines(1)
.textOverflow({ overflow: TextOverflow.Ellipsis })
}
}
.height(56)
.layoutWeight(1)
if (this.showRightIcon) {
Image(this.rightIcon)
.size({ width: 24, height: 24 })
.objectFit(ImageFit.Contain)
} else {
Blank()
.width(24)
}
}
.padding({ left: 16, right: 16, top: this.topHeight })
.height(56 + this.topHeight)
.width('100%')
.border({
width: { bottom: this.showBorder ? 1 : 0 },
color: $r('app.color.common_gray_bg')
})
}
}
这是封装好的代码辅助进去可以直接用
HcNavBar({title: '编辑资料',showBorder: true,showRightIcon: true})
HcNavBar({title:'个人资料',showBorder: true,leftIcon: $r('app.media.project02'),
更多推荐


所有评论(0)