Hello, Is there any property to set multiple icons in tab ?? I have following structure.
isc.TabSet.create({
ID: "newTabs",
tabBarPosition: "top",
canReorderTabs: true,
tabs: [{
title: "Add",
icon: [plus.png, power.png] // add power
},
{ title:"Add",
icon: [plus.png, elect.png] // add settings
}
]
I still have alternate to make one image combining 2 images. But before that i wanted to try it.
isc.TabSet.create({
ID: "newTabs",
tabBarPosition: "top",
canReorderTabs: true,
tabs: [{
title: "Add",
icon: [plus.png, power.png] // add power
},
{ title:"Add",
icon: [plus.png, elect.png] // add settings
}
]
I still have alternate to make one image combining 2 images. But before that i wanted to try it.
Comment