Flex布局

2024-01-22 16:06 更新
说明
  • 从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。

  • 仅当父组件是 Flex、Column、Row 时生效。

属性

名称

参数说明

描述

flexBasis

number | string

设置组件在父容器主轴方向上的基准尺寸。

默认值:'auto'(表示组件在主轴方向上的基准尺寸为组件原本的大小)。

不支持百分比设置。

从API version 9开始,该接口支持在ArkTS卡片中使用。

flexGrow

number

设置父容器的剩余空间分配给此属性所在组件的比例。

默认值:0

从API version 9开始,该接口支持在ArkTS卡片中使用。

flexShrink

number

设置父容器压缩尺寸分配给此属性所在组件的比例。

父容器为Row、Column时,默认值:0

父容器为flex时,默认值:1

从API version 9开始,该接口支持在ArkTS卡片中使用。

alignSelf

ItemAlign

子组件在父容器交叉轴的对齐格式,会覆盖Flex布局容器中的alignItems设置。

默认值:ItemAlign.Auto

从API version 9开始,该接口支持在ArkTS卡片中使用。

示例

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct FlexExample {
  5. build() {
  6. Column({ space: 5 }) {
  7. Text('flexBasis').fontSize(9).fontColor(0xCCCCCC).width('90%')
  8. // 基于主轴的基准尺寸
  9. // flexBasis()值可以是字符串'auto',表示基准尺寸是元素本来的大小,也可以是长度设置,相当于.width()/.height()
  10. Flex() {
  11. Text('flexBasis(100)')
  12. .flexBasis(100) // 这里表示宽度为100vp
  13. .height(100)
  14. .backgroundColor(0xF5DEB3)
  15. .textAlign(TextAlign.Center)
  16. Text(`flexBasis('auto')`)
  17. .flexBasis('auto') // 这里表示宽度保持原本设置的60%的宽度
  18. .width('60%')
  19. .height(100)
  20. .backgroundColor(0xD2B48C)
  21. .textAlign(TextAlign.Center)
  22. }.width('90%').height(120).padding(10).backgroundColor(0xAFEEEE)
  23. Text('flexGrow').fontSize(9).fontColor(0xCCCCCC).width('90%')
  24. // flexGrow()表示剩余空间分配给该元素的比例
  25. Flex() {
  26. Text('flexGrow(2)')
  27. .flexGrow(2) // 父容器分配给该Text的宽度为剩余宽度的2/3
  28. .height(100)
  29. .backgroundColor(0xF5DEB3)
  30. .textAlign(TextAlign.Center)
  31. Text('flexGrow(1)')
  32. .flexGrow(1) // 父容器分配给该Text的宽度为剩余宽度的1/3
  33. .height(100)
  34. .backgroundColor(0xD2B48C)
  35. .textAlign(TextAlign.Center)
  36. }.width('90%').height(120).padding(10).backgroundColor(0xAFEEEE)
  37. Text('flexShrink').fontSize(9).fontColor(0xCCCCCC).width('90%')
  38. // flexShrink()表示该元素的压缩比例,基于超出的总尺寸进行计算
  39. // 第一个text压缩比例是0,另外两个都是1,因此放不下时等比例压缩后两个,第一个不压缩
  40. Flex({ direction: FlexDirection.Row }) {
  41. Text('flexShrink(0)')
  42. .flexShrink(0)
  43. .width('50%')
  44. .height(100)
  45. .backgroundColor(0xF5DEB3)
  46. .textAlign(TextAlign.Center)
  47. Text('default flexShrink') // 默认值为1
  48. .width('40%')
  49. .height(100)
  50. .backgroundColor(0xD2B48C)
  51. .textAlign(TextAlign.Center)
  52. Text('flexShrink(1)')
  53. .flexShrink(1)
  54. .width('40%')
  55. .height(100)
  56. .backgroundColor(0xF5DEB3)
  57. .textAlign(TextAlign.Center)
  58. }.width('90%').height(120).padding(10).backgroundColor(0xAFEEEE)
  59. Text('alignSelf').fontSize(9).fontColor(0xCCCCCC).width('90%')
  60. // alignSelf会覆盖Flex布局容器中的alignItems设置
  61. Flex({ direction: FlexDirection.Row, alignItems: ItemAlign.Center }) {
  62. Text('no alignSelf,height:70')
  63. .width('33%')
  64. .height(70)
  65. .backgroundColor(0xF5DEB3)
  66. .textAlign(TextAlign.Center)
  67. Text('alignSelf End')
  68. .alignSelf(ItemAlign.End)
  69. .width('33%')
  70. .height(70)
  71. .backgroundColor(0xD2B48C)
  72. .textAlign(TextAlign.Center)
  73. Text('no alignSelf,height:100%')
  74. .width('34%')
  75. .height('100%')
  76. .backgroundColor(0xF5DEB3)
  77. .textAlign(TextAlign.Center)
  78. }.width('90%').height(120).padding(10).backgroundColor(0xAFEEEE)
  79. }.width('100%').margin({ top: 5 })
  80. }
  81. }

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号