diff options
author | Javier S. Pedro <dev.git@javispedro.com> | 2014-09-14 14:11:26 +0200 |
---|---|---|
committer | Javier S. Pedro <dev.git@javispedro.com> | 2014-09-14 14:11:26 +0200 |
commit | b9b1829dbc50534190c8b81f91ee477af6971834 (patch) | |
tree | 360f09061f43a247a5afdc2c83df2b9a03d86a4a /qml/watch | |
parent | 85fb48bc51fed06a50b6178727fdf9e96aea4fc4 (diff) | |
download | salmeta-b9b1829dbc50534190c8b81f91ee477af6971834.tar.gz salmeta-b9b1829dbc50534190c8b81f91ee477af6971834.zip |
addign watch properties, starting notification work
Diffstat (limited to 'qml/watch')
-rw-r--r-- | qml/watch/faces/builtinface3.png | bin | 0 -> 892 bytes | |||
-rw-r--r-- | qml/watch/faces/builtinface3.qml | 11 |
2 files changed, 11 insertions, 0 deletions
diff --git a/qml/watch/faces/builtinface3.png b/qml/watch/faces/builtinface3.png Binary files differnew file mode 100644 index 0000000..9154c9d --- /dev/null +++ b/qml/watch/faces/builtinface3.png diff --git a/qml/watch/faces/builtinface3.qml b/qml/watch/faces/builtinface3.qml new file mode 100644 index 0000000..ca542d4 --- /dev/null +++ b/qml/watch/faces/builtinface3.qml @@ -0,0 +1,11 @@ +import QtQuick 2.0 + +Rectangle { + width: 96 + height: 96 + + Image { + anchors.fill: parent + source: "builtinface3.png" + } +} |