aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarvin Borner2019-01-06 20:14:16 +0100
committerMarvin Borner2019-01-06 20:14:16 +0100
commit15d852bcf57c490eff232bbc8d60d6728bd54658 (patch)
tree90e92839c90e5f2e5c18e17dce5c6783b6d0c5ae
parent290dfe49b1070a9e025a5c9bb760a7122849985d (diff)
Improved timer and translations
-rw-r--r--qml/pages/LeaderBoard.qml5
-rw-r--r--qml/pages/SettingsPage.qml30
2 files changed, 5 insertions, 30 deletions
diff --git a/qml/pages/LeaderBoard.qml b/qml/pages/LeaderBoard.qml
new file mode 100644
index 0000000..9c36e13
--- /dev/null
+++ b/qml/pages/LeaderBoard.qml
@@ -0,0 +1,5 @@
+import QtQuick 2.0
+
+Item {
+
+}
diff --git a/qml/pages/SettingsPage.qml b/qml/pages/SettingsPage.qml
deleted file mode 100644
index 6dbadf4..0000000
--- a/qml/pages/SettingsPage.qml
+++ /dev/null
@@ -1,30 +0,0 @@
-import QtQuick 2.0
-import Sailfish.Silica 1.0
-
-Page {
- id: page
-
- // The effective value will be restricted by ApplicationWindow.allowedOrientations
- allowedOrientations: Orientation.All
-
- SilicaListView {
- id: listView
- model: 20
- anchors.fill: parent
- header: PageHeader {
- title: qsTr("Nested Page")
- }
- delegate: BackgroundItem {
- id: delegate
-
- Label {
- x: Theme.horizontalPageMargin
- text: qsTr("Item") + " " + index
- anchors.verticalCenter: parent.verticalCenter
- color: delegate.highlighted ? Theme.highlightColor : Theme.primaryColor
- }
- onClicked: console.log("Clicked " + index)
- }
- VerticalScrollDecorator {}
- }
-}