1# ArkUI Subsystem Changelog 2 3## cl.arkui.1 Change in Check Rules on the \<Scroll> Component 4 5**Access Level** 6 7Public 8 9**Reason for Change** 10 11The [\<Scroll>](../../../application-dev/reference/arkui-ts/ts-container-scroll.md) component supports a single child component. To prevent multiple child components from being added, a check rule is added to the compiler to warn of such attempts. 12 13**Change Impact** 14 15This change is a non-compatible change. The new check rule does not affect the layout or behavior of the **\<Scroll>** component. 16 17**API Level** 18 1911 20 21**Change Since** 22 23OpenHarmony SDK 4.1.3.5 24 25**Key API/Component Changes** 26 27**\<Scroll>** component 28 29**Adaptation Guide** 30 31Make sure the **\<Scroll>** component contains only one child component. 32 33## cl.arkui.2 Determination of the Cross Axis Size and stretch Alignment Mode in the \<Flex> Component 34 35**Access Level** 36 37Public 38 39**Reason for Change** 40 41In the **\<Flex>** container, the priority of the child component size is higher than that of the **stretch** alignment mode along the cross axis. If both are set, only the cross axis size of the child component takes effect. 42 43**Change Impact** 44 45This change is a compatible change. 46 47API version 9 and earlier versions: If both the child component size and the **stretch** alignment mode are set for the cross axis, the cross axis size of the child component does not take effect. 48 49API version 10 and later: If both the child component size and the **stretch** alignment mode are set for the cross axis, the **stretch** alignment mode does not take effect. 50 51**Change Since** 52 53OpenHarmony SDK 4.1.3.5 54 55**Key API/Component Changes** 56 57**\<Flex>** component 58 59**Adaptation Guide** 60 61To make the **stretch** alignment mode for the cross axis take effect, remove the cross axis size settings of the child component. 62