Just wondering if anyone can let me know how I can get these three buttons to centered and evenly spaced within the container?
Code:
Ext.define('rpc.view.home.indexView', { extend: 'Ext.Panel',
alias: 'widget.homeView',
config: {
items: [{
xtype: 'container',
layout: {
type: 'vbox',
pack: 'center'
},
defaults: {
xtype: 'button',
margin: '10 10 0 10'
},
items: [{
text: 'Videos',
cls: 'x-button-quicknav'
}, {
text: 'Events',
cls: 'x-button-quicknav'
}, {
text: 'Sites',
cls: 'x-button-quicknav'
}]
}]
},
initialize: function () {
console.log('rpc.view.home.index ~ initialize');
}
});