Center all Items to the middle of the screen
			
			QML and Qt Quick
		
8
Posts
2
Posters
2.9k
Views
2
Watching
- 
Helo, My Code is the following: Grid { 
 id: myGrid
 rows: 4
 columns: 1
 width: parent.width
 height: partent.height
 spacing: 50
 anchors.horizontalCenter: parent.horizontalCenterImage { id: circleImage source: "circle.png" // the CircleCollider has its origin in the center, not top-left anchors.horizontalCenter: parent.horizontalCenter Text { anchors.centerIn: parent font.pointSize: 48; text: accelerometer.steps } } Label { id: labelSteps text: "Schritte" anchors.horizontalCenter: circleImage.horizontalCenter anchors.top: circleImage.bottom anchors.topMargin: 5 } Image { id: circleImage2 source: "circle2.png" anchors.horizontalCenter: labelSteps.horizontalCenter anchors.top: labelSteps.bottom anchors.topMargin: 40 Text { anchors.centerIn: parent font.pointSize: 48; text: accelerometer.distance} } Label { id: labelDistance anchors.horizontalCenter: circleImage2.horizontalCenter anchors.top: circleImage2.bottom anchors.topMargin: 5 anchors { bottom: circleImage2.bottom; horizontalCenter: circleImage2.horizontalCenter } text: "km" }} It should look like that: http://fs1.directupload.net/images/150818/qiufx8st.png But it looks like that: http://www.bilder-upload.eu/show.php?file=31e598-1439891706.png How can I center all Items to the middle of the screen? 
