linphone-desktop/tests/ui/components/contact/ShortContactDescription.qml
2016-09-14 14:10:55 +02:00

30 lines
669 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.weight: Font.DemiBold
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
}
}