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

23 lines
439 B
QML

import QtQuick 2.9
import QtQuick.Controls 2.2
ListView {
id: view
spacing: 12
clip: true
ScrollBar.vertical: ScrollBar {
width: 8
}
delegate: messagesDelegate
Label {
anchors.fill: parent
horizontalAlignment: Qt.AlignHCenter
verticalAlignment: Qt.AlignVCenter
visible: parent.count == 0
text: qsTr("No messages to show yet!")
font.bold: true
}
}