psa: Moved harmattand code to Qt project with sync option
[feedingit] / FeedingIt-Sync / qml / qmlDev / MainPage.qml
1 import QtQuick 1.1
2 import com.nokia.meego 1.0
3
4 Page {
5     tools: commonTools
6
7     Label {
8         id: label
9         anchors.centerIn: parent
10         text: qsTr("Hello world!")
11         visible: false
12     }
13
14     Button{
15         anchors {
16             horizontalCenter: parent.horizontalCenter
17             top: label.bottom
18             topMargin: 10
19         }
20         text: qsTr("Click here!")
21         onClicked: label.visible = true
22     }
23 }