ts-universal-attributes-flex-layout.md 4.9 KB
Newer Older
Z
zengyawen 已提交
1
# Flex布局
Z
zengyawen 已提交
2

H
geshi  
HelloCrease 已提交
3
>  **说明:**
H
HelloCrease 已提交
4 5
>  - 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
>
B
bizhenhang 已提交
6
>  - 仅当父组件是 Flex、Column、Row 、GridCol时生效。
Z
zengyawen 已提交
7 8


Z
zengyawen 已提交
9 10
## 属性

11 12 13 14 15
| 名称       | 参数说明                                    | 描述                                                         |
| ---------- | ------------------------------------------- | ------------------------------------------------------------ |
| flexBasis  | number \| string                            | 设置组件在父容器主轴方向上的基准尺寸。<br/>默认值:'auto'(表示组件在主轴方向上的基准尺寸为组件原本的大小)。<br/>不支持百分比设置。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| flexGrow   | number                                      | 设置父容器的剩余空间分配给此属性所在组件的比例。<br/>默认值:0<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
| flexShrink | number                                      | 设置父容器压缩尺寸分配给此属性所在组件的比例。<br/>父容器为Row、Column时,默认值:0<br/> 父容器为flex时,默认值:1<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
B
bizhenhang 已提交
16
| alignSelf  | [ItemAlign](ts-appendix-enums.md#itemalign) | 子组件在父容器交叉轴的对齐格式,会覆盖Flex布局容器中的alignItems设置。<br/>GridCol可以绑定alignsSelf属性来改变它自身在交叉轴方向上的布局。<br/>默认值:ItemAlign.Auto<br/>从API version 10开始,该接口支持在ArkTS卡片中使用。 |
Z
zengyawen 已提交
17

Z
zengyawen 已提交
18 19

## 示例
Z
zengyawen 已提交
20

H
geshi  
HelloCrease 已提交
21 22
```ts
// xxx.ets
Z
zengyawen 已提交
23 24 25 26 27 28
@Entry
@Component
struct FlexExample {
  build() {
    Column({ space: 5 }) {
      Text('flexBasis').fontSize(9).fontColor(0xCCCCCC).width('90%')
29 30
      // 基于主轴的基准尺寸
      // flexBasis()值可以是字符串'auto',表示基准尺寸是元素本来的大小,也可以是长度设置,相当于.width()/.height()
Z
zengyawen 已提交
31 32
      Flex() {
        Text('flexBasis(100)')
33
          .flexBasis(100) // 这里表示宽度为100vp
W
wangshuainan 已提交
34 35 36
          .height(100)
          .backgroundColor(0xF5DEB3)
          .textAlign(TextAlign.Center)
37 38
        Text(`flexBasis('auto')`)
          .flexBasis('auto') // 这里表示宽度保持原本设置的60%的宽度
W
wangshuainan 已提交
39 40 41 42
          .width('60%')
          .height(100)
          .backgroundColor(0xD2B48C)
          .textAlign(TextAlign.Center)
Z
zengyawen 已提交
43 44 45
      }.width('90%').height(120).padding(10).backgroundColor(0xAFEEEE)

      Text('flexGrow').fontSize(9).fontColor(0xCCCCCC).width('90%')
46
      // flexGrow()表示剩余空间分配给该元素的比例
Z
zengyawen 已提交
47 48
      Flex() {
        Text('flexGrow(2)')
49
          .flexGrow(2) // 父容器分配给该Text的宽度为剩余宽度的2/3
W
wangshuainan 已提交
50 51 52
          .height(100)
          .backgroundColor(0xF5DEB3)
          .textAlign(TextAlign.Center)
Z
zengyawen 已提交
53
        Text('flexGrow(1)')
54
          .flexGrow(1) // 父容器分配给该Text的宽度为剩余宽度的1/3
W
wangshuainan 已提交
55 56 57
          .height(100)
          .backgroundColor(0xD2B48C)
          .textAlign(TextAlign.Center)
Z
zengyawen 已提交
58 59 60
      }.width('90%').height(120).padding(10).backgroundColor(0xAFEEEE)

      Text('flexShrink').fontSize(9).fontColor(0xCCCCCC).width('90%')
61 62
      // flexShrink()表示该元素的压缩比例,基于超出的总尺寸进行计算
      // 第一个text压缩比例是0,另外两个都是1,因此放不下时等比例压缩后两个,第一个不压缩
Z
zengyawen 已提交
63 64
      Flex({ direction: FlexDirection.Row }) {
        Text('flexShrink(0)')
W
wangshuainan 已提交
65 66 67 68 69
          .flexShrink(0)
          .width('50%')
          .height(100)
          .backgroundColor(0xF5DEB3)
          .textAlign(TextAlign.Center)
70
        Text('default flexShrink') // 默认值为1
W
wangshuainan 已提交
71 72 73 74
          .width('40%')
          .height(100)
          .backgroundColor(0xD2B48C)
          .textAlign(TextAlign.Center)
75 76
        Text('flexShrink(1)')
          .flexShrink(1)
W
wangshuainan 已提交
77 78 79 80
          .width('40%')
          .height(100)
          .backgroundColor(0xF5DEB3)
          .textAlign(TextAlign.Center)
Z
zengyawen 已提交
81 82 83
      }.width('90%').height(120).padding(10).backgroundColor(0xAFEEEE)

      Text('alignSelf').fontSize(9).fontColor(0xCCCCCC).width('90%')
84
      // alignSelf会覆盖Flex布局容器中的alignItems设置
Z
zengyawen 已提交
85
      Flex({ direction: FlexDirection.Row, alignItems: ItemAlign.Center }) {
86
        Text('no alignSelf,height:70')
W
wangshuainan 已提交
87
          .width('33%')
88 89 90 91 92 93 94
          .height(70)
          .backgroundColor(0xF5DEB3)
          .textAlign(TextAlign.Center)
        Text('alignSelf End')
          .alignSelf(ItemAlign.End)
          .width('33%')
          .height(70)
W
wangshuainan 已提交
95 96
          .backgroundColor(0xD2B48C)
          .textAlign(TextAlign.Center)
97 98 99 100 101
        Text('no alignSelf,height:100%')
          .width('34%')
          .height('100%')
          .backgroundColor(0xF5DEB3)
          .textAlign(TextAlign.Center)
Z
zengyawen 已提交
102 103 104 105 106 107
      }.width('90%').height(120).padding(10).backgroundColor(0xAFEEEE)
    }.width('100%').margin({ top: 5 })
  }
}
```

Y
yamila 已提交
108
![flex](figures/flex.PNG)