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

26 lines
514 B
QML

import QtQuick 2.4
import QtQuick.Controls 2.1
ListView {
id: view
spacing: 12
clip: true
ScrollBar.vertical: ScrollBar {
width: 8
background: Rectangle {
color: "transparent"
}
}
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
}
}