I want to align different Texts in RowLayout like bellow image
And here is my code
Rectangle {
id:root
anchors.fill: parent
color: "black"
RowLayout
{
ColumnLayout
{
id:col
Text {
text: "t1"
font.pixelSize:root.height/4
color: "white"
}
Text {
id:txt
text: "t2"
font.pixelSize:root.height/4
color: "white"
}
}
Text {
id:txt3
text: "t3"
font.pixelSize:root.height
color: "white"
}
}
}
But i fail to adjust t2 baseline with t3 (i want t2 and t3 start from same line from bottom) but result of my code is:


