Advertisement
Guest User

Untitled

a guest
Aug 18th, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. Grid{
  2. id: myGrid
  3. rows: 4
  4. columns: 1
  5. spacing: 50
  6. anchors.horizontalCenter: parent.horizontalCenter
  7.  
  8.  
  9.  
  10. Image {
  11. id: circleImage
  12. source: "circle.png"
  13. // the CircleCollider has its origin in the center, not top-left
  14. anchors.horizontalCenter: parent.horizontalCenter
  15. Text { anchors.centerIn: parent
  16. font.pointSize: 48; text: accelerometer.steps }
  17. }
  18.  
  19. Label {
  20. id: labelSteps
  21. text: "Schritte"
  22.  
  23. anchors.horizontalCenter: circleImage.horizontalCenter
  24. anchors.top: circleImage.bottom
  25. anchors.topMargin: 5
  26. }
  27.  
  28. Image {
  29. id: circleImage2
  30. source: "circle2.png"
  31. anchors.horizontalCenter: labelSteps.horizontalCenter
  32. anchors.top: labelSteps.bottom
  33. anchors.topMargin: 40
  34. Text { anchors.centerIn: parent
  35. font.pointSize: 48; text: accelerometer.distance}
  36. }
  37.  
  38. Label {
  39. id: labelDistance
  40. anchors.horizontalCenter: circleImage2.horizontalCenter
  41. anchors.top: circleImage2.bottom
  42. anchors.topMargin: 5
  43. anchors { bottom: circleImage2.bottom; horizontalCenter: circleImage2.horizontalCenter }
  44. text: "km"
  45. }
  46.  
  47.  
  48.  
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement