Qt 6.11 is out! See what's new in the release
blog
How to centre align Items under Column
-
Hi
I am trying to centre align the text fields Under QML Column as shown below , but the text fields are always left aligned
Column { Text { text: "1" } Text { text: "2" } }
Regards,
James AAdd
anchors.horizontalCenter: parent.horizontalCenterto each of your text items and addwidth: parent.widthto ColumnColumn { width: parent.width Text { text: "1"; anchors.horizontalCenter: parent.horizontalCenter } Text { text: "2"; anchors.horizontalCenter: parent.horizontalCenter } } -
