Advertisement
Guest User

Untitled

a guest
Feb 25th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.97 KB | None | 0 0
  1.     Row {
  2.         anchors {
  3.             top: parent.top
  4.             topMargin: Theme.paddingLarge
  5.             horizontalCenter: parent.horizontalCenter
  6.         }
  7.         spacing: Theme.paddingMedium
  8.  
  9.         Button {
  10.             text: "Scale UP"
  11.             onClicked: {
  12.                 container.scale = container.scale + 0.2
  13.             }
  14.         }
  15.         Button {
  16.             text: "Scale DOWN"
  17.             onClicked: {
  18.                 container.scale = container.scale - 0.2
  19.             }
  20.         }
  21.     }
  22.    
  23.     Rectangle {
  24.         id: container
  25.         anchors {
  26.             centerIn: parent
  27.         }
  28.         color: "green"
  29.  
  30.         width: 200
  31.         height: 200
  32.  
  33.         Rectangle {
  34.             anchors {
  35.                 fill: parent
  36.                 margins: Theme.paddingLarge
  37.             }
  38.             color: "blue"
  39.  
  40.             Text {
  41.                 anchors.centerIn: parent
  42.                 text: "Some text"
  43.             }
  44.         }
  45.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement