I am new to sencha touch and want to have three tabs icons i.e. Home, Profile/User and Camera
. The home
icon is currently visible but Profile/User
is not. How can I add icon of profile/user
and camera
to tab in sencha touch?
here is my code for Profile.js
Ext.define('find.view.Profile' , {
extend: 'Ext.Panel',
xtype: 'profile',
config: {
title: 'Profile',
iconCls: 'user',
layout: 'fit',
scrollable: true,
styleHtmlContent: true,
styleHtmlCls: 'profilepage',
html: ['<h1>Profile</h1>'].join('')
}
});