mirror of
https://github.com/muesli/telephant
synced 2024-11-22 19:33:06 +00:00
25 lines
606 B
QML
25 lines
606 B
QML
import QtQuick 2.4
|
|
import QtQuick.Controls 2.1
|
|
import QtQuick.Controls.Material 2.1
|
|
import QtQuick.Layouts 1.3
|
|
import QtGraphicalEffects 1.0
|
|
|
|
ColumnLayout {
|
|
property bool fadeMedia
|
|
|
|
id: messageDelegate
|
|
x: messagePane.Material.elevation
|
|
width: parent.width - messagePane.Material.elevation * 2 - 12
|
|
Pane {
|
|
id: messagePane
|
|
Material.elevation: 6
|
|
Layout.fillWidth: true
|
|
|
|
MessageView {
|
|
id: messageView
|
|
fadeMedia: messageDelegate.fadeMedia
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
}
|
|
}
|
|
}
|