Is it possible to add bullets to a Label in Flex 4.5 mobile development? something like this:
.Item
.Item
.Item
Is it possible to add bullets to a Label in Flex 4.5 mobile development? something like this:
.Item
.Item
.Item
I put an icon before the label
<s:List dataProvider="{items}">
<s:itemRenderer>
<fx:Component>
<s:IconItemRenderer iconFunction="getIcon" label="{data.name}">
<fx:Script>
<![CDATA[
private function getIcon(item:Object):String
{
return "assets/dot.png";
}
]]>
</fx:Script>
</s:IconItemRenderer>
</fx:Component>
</s:itemRenderer>
</s:List>
You could extend a custom label component where in the createChildren() you add your image and place it -x from the left side of the label and adjust the y accordingly.