linphone-desktop/tests/ui/modules/Linphone/Chat/IncomingMessage.qml

28 lines
485 B
QML

import QtQuick 2.7
import QtQuick.Layouts 1.3
import Linphone 1.0
// ===================================================================
RowLayout {
implicitHeight: message.height
spacing: 10
Avatar {
Layout.alignment: Qt.AlignTop
Layout.preferredHeight: 30
Layout.preferredWidth: 30
}
Message {
id: message
Layout.fillWidth: true
// Not a style. Workaround to avoid a 0 width.
Layout.minimumWidth: 20
backgroundColor: '#BFBFBF'
}
}