Is there a better alternative to sap.ui.commons.layout.MatrixLayout?
问题 What's the best way to do a layout where the start content is fixed, the center is flex and the end content is fixed? Like a 100% wide HBox with three columns, first and last col are fixed and the center stretches? This is how I do it by now, can I avoid using sap.ui.commons.layout.MatrixLayout ? new sap.ui.commons.layout.MatrixLayout({ layoutFixed: true, columns: 3, width: '100%', widths: [ '100px', '100%', '100px' ], rows: [ new sap.ui.commons.layout.MatrixLayoutRow({ cells : [ new sap.ui