Advertisement
Guest User

Untitled

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