mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
382 B
25 lines
382 B
import QtQuick 2.1
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
|
|
Text {
|
|
visible: !timelineManager.timeline
|
|
anchors.centerIn: parent
|
|
text: qsTr("No room open")
|
|
font.pointSize: 24
|
|
}
|
|
|
|
ListView {
|
|
visible: timelineManager.timeline != null
|
|
anchors.fill: parent
|
|
|
|
id: chat
|
|
|
|
model: timelineManager.timeline
|
|
delegate: Text {
|
|
height: contentHeight
|
|
text: model.userId
|
|
}
|
|
}
|
|
}
|
|
|