From 76bfcdf3fd649346143c1c8f64743fb10b5f82f3 Mon Sep 17 00:00:00 2001 From: xiexiyun Date: Thu, 23 Mar 2023 09:19:29 +0000 Subject: [PATCH] fixed 36114ab from https://gitee.com/xiexiyun/docs/pulls/16538 fixed 7e0a46c from https://gitee.com/xiexiyun/docs/pulls/16433 add flex stretch explanation in wrap mode Signed-off-by: xiexiyun Change-Id: I7d762f81b1a72be6a73750150711193ead47a38f --- zh-cn/application-dev/reference/arkui-ts/ts-appendix-enums.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-appendix-enums.md b/zh-cn/application-dev/reference/arkui-ts/ts-appendix-enums.md index 01bd2021d8..aef2334a28 100644 --- a/zh-cn/application-dev/reference/arkui-ts/ts-appendix-enums.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-appendix-enums.md @@ -259,7 +259,7 @@ | Start | 元素在Flex容器中,交叉轴方向首部对齐。 | | Center | 元素在Flex容器中,交叉轴方向居中对齐。 | | End | 元素在Flex容器中,交叉轴方向底部对齐。 | -| Stretch | 元素在Flex容器中,交叉轴方向拉伸填充,在未设置尺寸时,拉伸到容器尺寸。 | +| Stretch | 元素在Flex容器中,交叉轴方向拉伸填充。容器为Flex且设置Wrap为FlexWrap.Wrap或FlexWrap.WrapReverse时,元素拉伸到与当前行/列交叉轴长度最长的元素尺寸。其余情况在元素未设置尺寸时,拉伸到容器尺寸。 | | Baseline | 元素在Flex容器中,交叉轴方向文本基线对齐。 | ## FlexDirection -- GitLab