времени были такие же ожидания
в синтетическом тесте они одинаковы: import QtQml 2.12 import QtQuick 2.12 import QtQuick.Window 2.12 import QtQuick.Controls 2.12 import QtQuick.Layouts 1.12 Window { width: 640 height: 480 visible: true title: qsTr("Hello World") ColumnLayout { anchors.fill: parent RowLayout { Layout.fillWidth: true Button { id: button1 text: "do it" Layout.fillWidth: true } Button { id: button2 text: "do not do it" Layout.fillWidth: true } } TextField { text: button1.width } TextField { text: button2.width } Item { Layout.fillWidth: true Layout.fillHeight: true } } }
Это RowLayout
ой, не по шарам 🙈
@sultanatowner к слову, в синтетическом тесте все работает, как ожидается
Обсуждают сегодня