我是 sencha touch 的新手,想要三个标签图标,即Home, Profile/User and Camera
. 该home
图标当前可见但Profile/User
不可见。如何在 sencha touch 中添加图标profile/user
和标签?camera
这是我的 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('')
}
});