代码:
@Entry
@Component
struct StackTop {
@State message: string = 'Hello World';
build() {
Stack({alignContent:Alignment.TopStart}) {
Image($r('app.media.ic_back')).width(40).height(40)
.zIndex(2)//设置层级,以便可以有监听事件
Text('回复评论').width('100%').height(50)
.textAlign(TextAlign.Center)
}
.height(50)
.width('100%')
}
}