From 125bf42d84c269ee90a88257e088e2c71f310b36 Mon Sep 17 00:00:00 2001 From: Michael Bohlender Date: Wed, 29 Mar 2017 08:58:16 +0200 Subject: initial theme component --- components/theme/contents/ui/main.qml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 components/theme/contents/ui/main.qml (limited to 'components/theme/contents/ui/main.qml') 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 @@ + +import QtQuick 2.7 +import QtQuick.Layouts 1.2 + +import org.kube.components.theme 1.0 as KubeTheme + +Item { + height: 200 + width: 200 + + RowLayout { + + anchors.fill: parent + + Rectangle { + + height: 50 + width: 50 + + color: KubeTheme.Colors.text + } + } +} -- cgit v1.2.3