更新记录
2022年5月30日 开启本篇
auto布局是大部分容器默认的布局类型。
auto布局通常是从上到下进行堆叠,auto布局不会设置子组件的宽度,默认与容器一样的宽度。
类似于HTML中div标签,默认占满宽度,高度随内容。
layout: 'auto'
或者
layout: { type: 'auto' }
适合场景:
1.组件从上到下进行堆叠布局。
不适合场景:
1.组件需要多列并列排序布局。
2.组件需要按固定位置排列布局。
{ xtype: 'container', layout: 'auto', items: [ { xtype: 'panel', collapsible: true, title: 'panel-1', html: 'panel-1', width: 300 }, { xtype: 'panel', collapsible: true, title: 'panel-2', html: 'panel-2' }, { xtype: 'panel', collapsible: true, title: 'panel-3', html: 'panel-3', width: 500 } ] }