Stack
堆疊容器,子組件按照順序依次入棧,后一個(gè)子組件覆蓋前一個(gè)子組件。
說明:
開發(fā)前請(qǐng)熟悉鴻蒙開發(fā)指導(dǎo)文檔 :[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md
]
該組件從API Version 7開始支持。后續(xù)版本如有新增內(nèi)容,則采用上角標(biāo)單獨(dú)標(biāo)記該內(nèi)容的起始版本。
子組件
可以包含子組件。
接口
Stack(value?: { alignContent?: Alignment })
從API version 9開始,該接口支持在ArkTS卡片中使用。
參數(shù)名 | 參數(shù)類型 | 必填 | 參數(shù)描述 |
---|---|---|---|
alignContent | [Alignment] | 否 | 設(shè)置子組件在容器內(nèi)的對(duì)齊方式。 默認(rèn)值:Alignment.Center |
屬性
除支持[通用屬性]外,還支持以下屬性:
名稱 | 參數(shù)類型 | 描述HarmonyOS與OpenHarmony鴻蒙文檔籽料:mau123789是v直接拿 |
---|---|---|
alignContent | [Alignment] | 設(shè)置子組件在容器內(nèi)的對(duì)齊方式。 默認(rèn)值:Alignment.Center 從API version 9開始,該接口支持在ArkTS卡片中使用。**說明:**該屬性與[通用屬性align]同時(shí)設(shè)置時(shí),后設(shè)置的屬性生效。 |
示例
// 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 })
}
}
審核編輯 黃宇
-
鴻蒙
+關(guān)注
關(guān)注
57文章
2351瀏覽量
42849 -
HarmonyOS
+關(guān)注
關(guān)注
79文章
1975瀏覽量
30182
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論