linphone-desktop/tests/ui/modules/Linphone/Contact/ContactDescription.qml
2016-09-27 09:12:10 +02:00

30 lines
658 B
QML

import QtQuick 2.7
// ===================================================================
Column {
property alias sipAddress: sipAddress.text
property alias username: username.text
// Username.
Text {
clip: true
color: '#5A585B'
font.pointSize: 11
font.bold: true
height: parent.height / 2
id: username
verticalAlignment: Text.AlignBottom
width: parent.width
}
// Sip address.
Text {
clip: true
color: '#5A585B'
height: parent.height / 2
id: sipAddress
verticalAlignment: Text.AlignTop
width: parent.width
}
}