summaryrefslogtreecommitdiff
path: root/qml/tapasboard/MainPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/tapasboard/MainPage.qml')
-rw-r--r--qml/tapasboard/MainPage.qml17
1 files changed, 17 insertions, 0 deletions
diff --git a/qml/tapasboard/MainPage.qml b/qml/tapasboard/MainPage.qml
new file mode 100644
index 0000000..7337b12
--- /dev/null
+++ b/qml/tapasboard/MainPage.qml
@@ -0,0 +1,17 @@
+import QtQuick 1.1
+import com.nokia.meego 1.0
+
+Page {
+ tools: commonTools
+
+ Button {
+ anchors {
+ centerIn: parent
+ }
+ text: qsTr("Open board")
+ onClicked: pageStack.push(Qt.resolvedUrl("BoardPage.qml"), {
+ boardUrl: "http://support.tapatalk.com/mobiquo/mobiquo.php",
+ rootForumId: 0
+ })
+ }
+}