List control uses default item renderer to display strings : List Renderer « Components « Flex
- Flex
- Components
- List Renderer
List control uses default item renderer to display strings

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:List width="50" height="75">
<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