Set the verticalAlign for List : List « Components « Flex
- Flex
- Components
- List
Set the verticalAlign for List

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:List verticalAlign="bottom" width="220" height="200">
<mx:dataProvider>
<mx:String>A</mx:String>
<mx:String>B</mx:String>
<mx:String>C</mx:String>
</mx:dataProvider>
</mx:List>
</mx:Application>
Related examples in the same category