summaryrefslogtreecommitdiffstats
path: root/qt-mobile/ThemeTest.qml
blob: 55c15ed772e5ff5f77a821b96d0b53edf0a17c1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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

	}
}