Blank
空白填充組件,在容器主軸方向上,空白填充組件具有自動(dòng)填充容器空余部分的能力。僅當(dāng)父組件為Row/Column/Flex時(shí)生效。
說明:
開發(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)容的起始版本。
子組件
無
接口
Blank(min?: number | string)
從API version 10開始:
- Blank在父容器Row、Column、Flex主軸方向上未設(shè)置大小時(shí)會(huì)自動(dòng)拉伸、壓縮,設(shè)置了大小或容器自適應(yīng)子節(jié)點(diǎn)大小時(shí)不會(huì)自動(dòng)拉伸、壓縮。
- Blank設(shè)置主軸方向大小(size)與min時(shí)約束關(guān)系為max(min, size)。
- Blank在父容器交叉軸上設(shè)置大小時(shí)不會(huì)撐滿父容器交叉軸,交叉軸不設(shè)置大小時(shí)alignSelf默認(rèn)值為ItemAlign.Stretch,會(huì)撐滿容器交叉軸。
從API version 9開始,該接口支持在ArkTS卡片中使用。
參數(shù)名 | 參數(shù)類型 | 必填 | 參數(shù)描述 |
---|---|---|---|
min | number | string | 否 |
屬性
除支持[通用屬性]外,還支持以下屬性:
名稱 | 參數(shù)類型 | 描述 |
---|---|---|
color | [ResourceColor] | 設(shè)置空白填充的填充顏色。 默認(rèn)值:Color.Transparent 從API version 9開始,該接口支持在ArkTS卡片中使用。 |
事件
支持[通用事件]。
示例
示例1
Blank組件在橫豎屏占滿空余空間效果。
// xxx.ets
@Entry
@Component
struct BlankExample {
build() {
Column() {
Row() {
Text('Bluetooth').fontSize(18)
Blank()
Toggle({ type: ToggleType.Switch }).margin({ top: 14, bottom: 14, left: 6, right: 6 })
}.width('100%').backgroundColor(0xFFFFFF).borderRadius(15).padding({ left: 12 })
}.backgroundColor(0xEFEFEF).padding(20)
}
}
豎屏狀態(tài)
橫屏狀態(tài)
示例2
Blank組件的父組件未設(shè)置寬度時(shí),min參數(shù)的使用效果。
// xxx.ets
@Entry
@Component
struct BlankExample {
build() {
Column({ space: 20 }) {
// blank父組件不設(shè)置寬度時(shí),Blank失效,可以通過設(shè)置min最小寬度填充固定寬度
Row() {
Text('Bluetooth').fontSize(18)
Blank().color(Color.Yellow)
Toggle({ type: ToggleType.Switch }).margin({ top: 14, bottom: 14, left: 6, right: 6 })
}.backgroundColor(0xFFFFFF).borderRadius(15).padding({ left: 12 })
Row() {
Text('Bluetooth').fontSize(18)
// 設(shè)置最小寬度為160
Blank('160').color(Color.Yellow)
Toggle({ type: ToggleType.Switch }).margin({ top: 14, bottom: 14, left: 6, right: 6 })
}.backgroundColor(0xFFFFFF).borderRadius(15).padding({ left: 12 })
}.backgroundColor(0xEFEFEF).padding(20).width('100%')
}
}
`HarmonyOS與OpenHarmony鴻蒙文檔籽料:mau123789是v直接拿`
Blank父組件未設(shè)置寬度時(shí),子組件間無空白填充,使用min參數(shù)設(shè)置填充尺寸
審核編輯 黃宇
-
組件
+關(guān)注
關(guān)注
1文章
512瀏覽量
17845 -
鴻蒙
+關(guān)注
關(guān)注
57文章
2363瀏覽量
42885
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論