telephant/qml/MessageDelegate.qml
Christian Muehlhaeuser 75bb63964b
Drop the twitter lingo
2019-05-02 10:37:04 +02:00

22 lines
562 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 {
x: messagePane.Material.elevation
width: parent.width - messagePane.Material.elevation * 2 - 12
Pane {
anchors.horizontalCenter: parent.horizontalCenter
id: messagePane
Material.elevation: 6
Layout.fillWidth: true
MessageView {
id: messageView
anchors.left: parent.left
anchors.right: parent.right
}
}
}