telephant/qml/TweetDelegate.qml

21 lines
456 B
QML
Raw Normal View History

2017-08-29 07:02:56 +02:00
import QtQuick 2.4
2017-08-29 16:28:33 +02:00
import QtQuick.Controls 2.1
import QtQuick.Controls.Material 2.1
2017-08-29 07:02:56 +02:00
import QtQuick.Layouts 1.3
import QtGraphicalEffects 1.0
RowLayout {
width: parent.width - messagePane.Material.elevation * 2
Pane {
id: messagePane
Material.elevation: 6
anchors.fill: parent
MessageView {
id: messageView
anchors.left: parent.left
anchors.right: parent.right
}
}
}