Details
-
Bug
-
Resolution: Done
-
P2: Important
-
6.4
-
3ed72de5e2 (qt/qtdeclarative/dev) c7c85254c2 (qt/qtdeclarative/6.4) c7c85254c2 (qt/tqtc-qtdeclarative/6.4) b6b7bc5e2d (qt/qtdeclarative/6.3) b6b7bc5e2d (qt/tqtc-qtdeclarative/6.3)
Description
import QtQuick 2.15 import QtQuick.Controls 2.15 import QtQuick.Layouts 1.15 ApplicationWindow { id: mainWindow width: 300 height: 300 visible: true ColumnLayout { CheckBox { text: "CheckBox" } Button { text: "Button" } RowLayout { Repeater { model: 3 RadioButton { text: "RadioButton" } } } Slider {} } }