mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-25 15:58:16 +00:00
27 lines
546 B
QML
27 lines
546 B
QML
import QtQuick 2.7
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import 'qrc:/ui/components/contact'
|
|
|
|
// ===================================================================
|
|
|
|
Item {
|
|
implicitHeight: message.height
|
|
|
|
RowLayout {
|
|
anchors.fill: parent
|
|
spacing: 10
|
|
|
|
Avatar {
|
|
Layout.alignment: Qt.AlignTop
|
|
Layout.preferredHeight: 30
|
|
Layout.preferredWidth: 30
|
|
}
|
|
|
|
Message {
|
|
Layout.fillWidth: true
|
|
backgroundColor: '#BFBFBF'
|
|
id: message
|
|
}
|
|
}
|
|
}
|