diff options
Diffstat (limited to 'qml/keydetails.qml')
-rw-r--r-- | qml/keydetails.qml | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/qml/keydetails.qml b/qml/keydetails.qml index 5c5a35d..8ddf0c0 100644 --- a/qml/keydetails.qml +++ b/qml/keydetails.qml @@ -9,11 +9,43 @@ Rectangle { //color: "red" Text { // qsTr() for internationalisation, like tr() - text: qsTr("var:") + text: qsTr("id:") } Text { x: 54 y: 0 - text: var1 + text: id + } + + Text { + id: text1 + x: 0 + y: 21 + text: qsTr("email") + font.pixelSize: 12 + } + + Text { + id: text2 + x: 54 + y: 21 + text: email + font.pixelSize: 12 + } + + Text { + id: text3 + x: -4 + y: 38 + text: qsTr("name") + font.pixelSize: 12 + } + + Text { + id: text4 + x: 54 + y: 38 + text: name + font.pixelSize: 12 } } |