telephant/qml/TweetDelegate.qml
Christian Muehlhaeuser 8bed429389
Added UI and data mocks
2017-08-29 07:02:56 +02:00

20 lines
456 B
QML

import QtQuick 2.4
import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.2
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
}
}
}