<s:Group>
我在 Flex 4中有以下组件示例:
<s:Group left="10" top="10" right="10">
<s:layout>
<s:HorizontalLayout gap="20"/>
</s:layout>
<s:Image id="image" source="{data.imageURL}"/>
<s:Label right="0" styleName="description" text="{data.description}"/>
</s:Group>
<s:Label>
如果组件对于组内的图像宽度和标签的宽度都太长,是否可以将组件包装到新行上?
感谢您的时间。