Blank
空白填充組件,在容器主軸方向上,空白填充組件具有自動填充容器空余部分的能力。僅當父組件為Row/Column/Flex時生效。
說明:
開發(fā)前請熟悉鴻蒙開發(fā)指導文檔 :[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md
]
該組件從API Version 7開始支持。后續(xù)版本如有新增內容,則采用上角標單獨標記該內容的起始版本。
子組件
無
接口
Blank(min?: number | string)
從API version 10開始:
- Blank在父容器Row、Column、Flex主軸方向上未設置大小時會自動拉伸、壓縮,設置了大小或容器自適應子節(jié)點大小時不會自動拉伸、壓縮。
- Blank設置主軸方向大?。╯ize)與min時約束關系為max(min, size)。
- Blank在父容器交叉軸上設置大小時不會撐滿父容器交叉軸,交叉軸不設置大小時alignSelf默認值為ItemAlign.Stretch,會撐滿容器交叉軸。
從API version 9開始,該接口支持在ArkTS卡片中使用。
參數:
參數名 | 參數類型 | 必填 | 參數描述 |
---|---|---|---|
min | number | string | 否 |
屬性
除支持[通用屬性]外,還支持以下屬性:
名稱 | 參數類型 | 描述 |
---|---|---|
color | [ResourceColor] | 設置空白填充的填充顏色。 默認值: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組件的父組件未設置寬度時,min參數的使用效果。
// xxx.ets
@Entry
@Component
struct BlankExample {
build() {
Column({ space: 20 }) {
// blank父組件不設置寬度時,Blank失效,可以通過設置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)
// 設置最小寬度為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父組件未設置寬度時,子組件間無空白填充,使用min參數設置填充尺寸
審核編輯 黃宇
-
組件
+關注
關注
1文章
503瀏覽量
17784 -
鴻蒙
+關注
關注
57文章
2302瀏覽量
42689
發(fā)布評論請先 登錄
相關推薦
評論