赞
踩
鸿蒙(HarmonyOS)项目方舟框架(ArkUI)之Flex容器组件
操作系统: Windows 10 专业版、IDE:DevEco Studio 3.1、SDK:HarmonyOS 3.1+
将子组件纵向布局,并在每个子组件之间插入一根横向的分割线。
可以包含子组件。
Flex(value?: { direction?: FlexDirection, wrap?: FlexWrap, justifyContent?: FlexAlign, alignItems?: ItemAlign, alignContent?: FlexAlign })
标准Flex布局容器。详细指导请参考弹性布局。
从API version 9开始,该接口支持在ArkTS卡片中使用。
参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
---|---|---|---|---|
direction | 否 | FlexDirection.Row | 子组件在Flex容器上排列的方向,即主轴的方向。 | |
wrap | 否 | FlexWrap.NoWrap | Flex容器是单行/列还是多行/列排列。 说明: 在多行布局时,通过交叉轴方向,确认新行堆叠方向。 | |
justifyContent | 否 | FlexAlign.Start | 所有子组件在Flex容器主轴上的对齐格式。 | |
alignItems | 否 | ItemAlign.Start | 所有子组件在Flex容器交叉轴上的对齐格式。 | |
alignContent | 否 | FlexAlign.Start | 交叉轴中有额外的空间时,多行内容的对齐方式。仅在wrap为Wrap或WrapReverse下生效。 |
- // xxx.ets
- @Entry
- @Component
- struct FlexExample1 {
- build() {
- Column() {
- Column({ space: 5 }) {
- Text('direction:Row').fontSize(9).fontColor(0xCCCCCC).width('90%')
- Flex({ direction: FlexDirection.Row }) { // 子组件在容器主轴上行布局
- Text('1').width('20%').height(50).backgroundColor(0xF5DEB3)
- Text('2').width('20%').height(50).backgroundColor(0xD2B48C)
- Text('3').width('20%').height(50).backgroundColor(0xF5DEB3)
- Text('4').width('20%').height(50).backgroundColor(0xD2B48C)
- }
- .height(70)
- .width('90%')
- .padding(10)
- .backgroundColor(0xAFEEEE)
-
- Text('direction:RowReverse').fontSize(9).fontColor(0xCCCCCC).width('90%')
- Flex({ direction: FlexDirection.RowReverse }) { // 子组件在容器主轴上反向行布局
- Text('1').width('20%').height(50).backgroundColor(0xF5DEB3)
- Text('2').width('20%').height(50).backgroundColor(0xD2B48C)
- Text('3').width('20%').height(50).backgroundColor(0xF5DEB3)
- Text('4').width('20%').height(50).backgroundColor(0xD2B48C)
- }
- .height(70)
- .width('90%')
- .padding(10)
- .backgroundColor(0xAFEEEE)
-
- Text('direction:Column').fontSize(9).fontColor(0xCCCCCC).width('90%')
- Flex({ direction: FlexDirection.Column }) { // 子组件在容器主轴上列布局
- Text('1').width('100%').height(40).backgroundColor(0xF5DEB3)
- Text('2').width('100%').height(40).backgroundColor(0xD2B48C)
- Text('3').width('100%').height(40).backgroundColor(0xF5DEB3)
- Text('4').width('100%').height(40).backgroundColor(0xD2B48C)
- }
- .height(160)
- .width('90%')
- .padding(10)
- .backgroundColor(0xAFEEEE)
-
- Text('direction:ColumnReverse').fontSize(9).fontColor(0xCCCCCC).width('90%')
- Flex({ direction: FlexDirection.ColumnReverse }) { // 子组件在容器主轴上反向列布局
- Text('1').width('100%').height(40).backgroundColor(0xF5DEB3)
- Text('2').width('100%').height(40).backgroundColor(0xD2B48C)
- Text('3').width('100%').height(40).backgroundColor(0xF5DEB3)
- Text('4').width('100%').height(40).backgroundColor(0xD2B48C)
- }
- .height(160)
- .width('90%')
- .padding(10)
- .backgroundColor(0xAFEEEE)
- }.width('100%').margin({ top: 5 })
- }.width('100%')
- }
- }
你有时间常去我家看看我在这里谢谢你啦...
我家地址:亚丁号
最后送大家一首诗:
山高路远坑深,
大军纵横驰奔,
谁敢横刀立马?
惟有点赞加关注大军。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。