Text {
id: firstText
x: 50
y: 570
text: "4.4"
font.pixelSize: 60
font.family: sansGuiltMB.name
color: "#0085CA"
}
Text {
id: secondText
anchors.left: firstText.right
y: 570
text: "m/s"
font.pixelSize: 28
font.family: universalisRegular.name
color: "#0085CA3"
}
输出:
我希望 secondText 位于底部。为什么它被困在顶部?我试过使用verticalAlignment,verticalCenter,ligneHeight但没有改变。
编辑:添加anchors.bottom: firstText.bottom
确实有效,但 firstText 与 secondText 不是垂直对齐的: