summaryrefslogtreecommitdiffstats
path: root/components/theme/contents/ui/main.qml
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-03-29 08:58:16 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-03-29 08:58:16 +0200
commit125bf42d84c269ee90a88257e088e2c71f310b36 (patch)
tree5a19f0f748277c37db7d3d1b111b618657a77075 /components/theme/contents/ui/main.qml
parentaa6f0e0b8ec9fb90182ab0b65825ba5e6c94d4fa (diff)
downloadkube-125bf42d84c269ee90a88257e088e2c71f310b36.tar.gz
kube-125bf42d84c269ee90a88257e088e2c71f310b36.zip
initial theme component
Diffstat (limited to 'components/theme/contents/ui/main.qml')
-rw-r--r--components/theme/contents/ui/main.qml23
1 files changed, 23 insertions, 0 deletions
diff --git a/components/theme/contents/ui/main.qml b/components/theme/contents/ui/main.qml
new file mode 100644
index 00000000..c3c7ac8f
--- /dev/null
+++ b/components/theme/contents/ui/main.qml
@@ -0,0 +1,23 @@
1
2import QtQuick 2.7
3import QtQuick.Layouts 1.2
4
5import org.kube.components.theme 1.0 as KubeTheme
6
7Item {
8 height: 200
9 width: 200
10
11 RowLayout {
12
13 anchors.fill: parent
14
15 Rectangle {
16
17 height: 50
18 width: 50
19
20 color: KubeTheme.Colors.text
21 }
22 }
23}