有没有办法让空格成为锚布局?
在添加组件之前,我想要一个空的空间。注意:我不能使用边距。
layout: {
type: 'anchor'
},
items : [
{
xtype: 'hidden',
anchor: '50% -2'
}
}
我也尝试过:
{
xtype : 'label',
text : '',
labelSeparator: '',
anchor: '50% -2'
},
答案 0 :(得分:0)
这最终对我有用:
{
xtype: 'label',
html: ' '
},