複数のリストをスクローラーに配置したい (各リストはスクロールできない)。以下で私が行っていることは機能しますが、各リストの後に巨大なランダムギャップがあります. renderers.Pending を確認しましたが、ギャップの原因となるものは何もありません。verticalScrollPolicy をオフに設定した場合にのみ発生することに気付きました。私はそれをオンに設定したくありません。そうしないと、リスト自体がスクロール可能になります。
<s:Scroller height="80%" width="100%">
<s:VGroup width="100%">
<s:Label bottom="5" width="100%" styleName="normalWhite" text="Heading 1" textAlign="left" fontSize="18" />
<s:List id="pendingList1"
width="100%"
includeIn="pending"
dataProvider="{Info}" contentBackgroundAlpha="0"
itemRenderer="renderers.Pending"
styleName="customList" alternatingItemColors="[#13237d]"
selectionColor="#009de0"
dragEnabled="false"
dragMoveEnabled="false"
dropEnabled="false"
verticalScrollPolicy="off">
<s:layout>
<s:VerticalLayout horizontalAlign="justify" gap="1"/>
</s:layout>
</s:List>
<s:Label bottom="5" width="100%" styleName="normalWhite" text="Heading 2" textAlign="left" fontSize="18" />
<s:List id="pendingList2"
width="100%"
includeIn="pending"
dataProvider="{Info}" contentBackgroundAlpha="0"
itemRenderer="renderers.Pending"
styleName="customList" alternatingItemColors="[#13237d]"
selectionColor="#009de0"
dragEnabled="false"
dragMoveEnabled="false"
dropEnabled="false"
verticalScrollPolicy="off">
<s:layout>
<s:VerticalLayout horizontalAlign="justify" gap="1"/>
</s:layout>
</s:List>
</s:VGroup>
</s:Scroller>