26 lines
475 B
QML
26 lines
475 B
QML
import QtQuick 2.0
|
|
|
|
Rectangle {
|
|
id: root
|
|
width:200; height:300
|
|
|
|
Rectangle {
|
|
id: rectangle
|
|
objectName: "mover"
|
|
color: "green"
|
|
width:50; height:50
|
|
}
|
|
|
|
states: [
|
|
State {
|
|
name: "anchored"
|
|
AnchorChanges {
|
|
target: rectangle
|
|
anchors.left: root.left
|
|
anchors.right: root.right
|
|
anchors.bottom: root.bottom
|
|
}
|
|
}
|
|
]
|
|
}
|