diff options
author | Marvin Borner | 2020-04-09 16:15:07 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-09 16:15:07 +0200 |
commit | ebb1ab3d05b1e61a491375b7640196e04f1bab06 (patch) | |
tree | e5b2f0849dee8a5e400bef36eafcd357069291ef /qml/cover/CoverPage.qml |
Initial commit: Basic chess grid
Diffstat (limited to 'qml/cover/CoverPage.qml')
-rw-r--r-- | qml/cover/CoverPage.qml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/qml/cover/CoverPage.qml b/qml/cover/CoverPage.qml new file mode 100644 index 0000000..fc562d5 --- /dev/null +++ b/qml/cover/CoverPage.qml @@ -0,0 +1,22 @@ +import QtQuick 2.0 +import Sailfish.Silica 1.0 + +CoverBackground { + Label { + id: label + anchors.centerIn: parent + text: qsTr("My Cover") + } + + CoverActionList { + id: coverAction + + CoverAction { + iconSource: "image://theme/icon-cover-next" + } + + CoverAction { + iconSource: "image://theme/icon-cover-pause" + } + } +} |