堆叠容器,子组件按照顺序依次入栈,后一个子组件覆盖前一个子组件。该组件从API Version 7开始支持。可以包含子组件。
一、接口
Stack(value?: { alignContent?: Alignment })
从API version 9开始,该接口支持在ArkTS卡片中使用。
二、属性
除支持通用属性外,还支持以下属性:
三、示例
// xxx.ets
@Entry
@Component
struct StackExample {
build() {
Stack({ alignContent: Alignment.Bottom }) {
Text('First child, show in bottom').width('90%').height('100%').backgroundColor(0xd2cab3).align(Alignment.Top)
Text('Second child, show in top').width('70%').height('60%').backgroundColor(0xc1cbac).align(Alignment.Top)
}.width('100%').height(150).margin({ top: 5 })
}
}
四、效果展示
五、场景
卡片上实现堆叠的场景使用。
本文根据HarmonyOS官方文档整理。
标签:OpenHarmony,ArkTS,卡片,width,height,HarmonyOS,组件,Stack,Alignment From: https://blog.51cto.com/u_14946066/7773837