I am new to sencha touch. i need a layout that icons should be arranged horizontally. i tried with three icons but only the first icons is showing. other icons are hiding behind. can any one pls help me in fixing the errors
here is my code:
{
xtype: 'panel',
layout:'vbox',
width:'300',
height:'600',
align:'center',
items:[
{
xtype:'image',
left:'40%',
'http://myimage.com/image.png'
style: 'background-color: #fff'
},
{
xtype:'image',
right:'40%',
'http://myimage.com/image.png'
style:'background-color: #fff'
},
]
},