Text Width
Moved
Unsolved
QML and Qt Quick
-
-
C Christian Ehrlicher moved this topic from General and Desktop on
-
@gnoowami
dont do hardcode values,try to do generic values.
for example
Text {
Layout.fillwidth : true
Layout.maximumwidth : parent.width0.1
Layout.minimumwidth : parent.width0.5
} -
Layout.maximumwidth:parent.width here do multiply with 0.1
Layout.minimumwidth:parent.width here do multiply with 0.5 -
Layout.maximumwidth:parent.width here do multiply with 0.1
Layout.minimumwidth:parent.width here do multiply with 0.5@Shankarlinga-M thank you i solve that