mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-28 17:29:19 +00:00
26 lines
360 B
QML
26 lines
360 B
QML
import QtQuick 2.7
|
|
|
|
import Common 1.0
|
|
import Linphone 1.0
|
|
|
|
Item {
|
|
implicitHeight: message.height
|
|
width: parent.width - 16
|
|
|
|
Message {
|
|
id: message
|
|
|
|
anchors {
|
|
left: parent.left
|
|
right: parent.right
|
|
}
|
|
|
|
backgroundColor: '#E4E4E4'
|
|
|
|
// TODO: Success and re-send icon.
|
|
Icon {
|
|
iconSize: 16
|
|
icon: 'valid'
|
|
}
|
|
}
|
|
}
|