Adding wip version for meego harmattan
[feedingit] / psa_harmattan / feedingit / qml / MainPage.qml
1 import QtQuick 1.1
2 import com.meego 1.0
3
4 Page {
5     id: mainPage
6     tools: commonTools
7     Label {
8         id: label
9         anchors.centerIn: parent
10         text: qsTr("Hello world!")
11         visible: false
12     }
13     Button{
14         anchors.horizontalCenter: parent.horizontalCenter
15         anchors.top: label.bottom
16         anchors.topMargin: 10
17         text: qsTr("Click here!")
18         onClicked: label.visible=true
19     }
20 }