案例
@Component
export struct PositionLayout {
build() {
Column(){
Text('1').width(50).height(50).backgroundColor(Color.Red)
Text('2').width(50).height(50).backgroundColor(Color.Gray)
.position({
x: 80,
y: 80
}).zIndex(1)
Text('3').width(50).height(50).backgroundColor(Color.Pink)
}.width(200).height(200).backgroundColor(Color.Orange)
}
}