summaryrefslogtreecommitdiffstats
path: root/qt-mobile/ThemeTest.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qt-mobile/ThemeTest.qml')
-rw-r--r--qt-mobile/ThemeTest.qml15
1 files changed, 15 insertions, 0 deletions
diff --git a/qt-mobile/ThemeTest.qml b/qt-mobile/ThemeTest.qml
new file mode 100644
index 000000000..55c15ed77
--- /dev/null
+++ b/qt-mobile/ThemeTest.qml
@@ -0,0 +1,15 @@
+import QtQuick 2.5
+import QtQuick.Layouts 1.1
+
+ColumnLayout {
+ id: themetest
+
+ Text {
+ text: "units.gridUnit is: " + units.gridUnit
+ }
+
+ Text {
+ text: "units.devicePixelRatio: " + units.devicePixelRatio
+
+ }
+}