Advertisement
Guest User

Untitled

a guest
Dec 20th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.36 KB | None | 0 0
  1. import QtQuick 2.12
  2.  
  3. Image {
  4.     id: root
  5.     source: "images/background.png"
  6.  
  7.     Image {
  8.         id: pole
  9.         anchors.horizontalCenter: parent.horizontalCenter
  10.         anchors.bottom: parent.bottom
  11.         source: "images/pole.png"
  12.     }
  13.  
  14.     Image {
  15.         id: wheel
  16.         anchors.centerIn: parent
  17.         source: "images/pinwheel.png"
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement