diff options
Diffstat (limited to 'qml/keydetails.qml')
-rw-r--r-- | qml/keydetails.qml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/qml/keydetails.qml b/qml/keydetails.qml new file mode 100644 index 0000000..f250ba0 --- /dev/null +++ b/qml/keydetails.qml @@ -0,0 +1,19 @@ +import QtQuick 1.1 + +Rectangle { + width: 400 //these are the only explicit sizes set + height: 400 //all others are relative + + anchors.fill: parent + + //color: "red" + Text { + // qsTr() for internationalisation, like tr() + text: qsTr("var1:") + } + Text { + x: 54 + y: 0 + text: var1 + } +} |