PDA

View Full Version : align center in qml



ravandi
23rd November 2015, 08:53
This is my program.
http://s3.picofile.com/file/8224291576/max.gif
I want to be like this:
http://s3.picofile.com/file/8224291734/max2.gif
thanks you.

anda_skoa
23rd November 2015, 12:27
If you want to center an item into another item both vertically and horizontally, use


anchors.centerIn: otherItemsId

for example centering inside the parent


Item {
Item {
anchors.centerIn: parent
}
}


Cheers,
_