Advertisement
Guest User

Untitled

a guest
Aug 8th, 2011
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Page {
  2.     id: resultsPage
  3.  
  4.     Column {
  5.         anchors.centerIn: parent
  6.  
  7.         Label {
  8.             id: titleLabel
  9.             text: "Song title here"
  10.             anchors.top: parent.bottom
  11.         }
  12.  
  13.         Label {
  14.             id: albumLabel
  15.             text: "Album name here"
  16.             anchors.top: titleLabel.bottom
  17.         }
  18.  
  19.         Label {
  20.             id: artistLabel
  21.             text: "Artist name here"
  22.             anchors.top: albumLabel.bottom
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement