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.
 
 
 
 
 
 
nheko/resources/qml/TimelineView.qml

22 lines
300 B

import QtQuick 2.1
Rectangle {
anchors.fill: parent
Text {
visible: !timeline
anchors.centerIn: parent
text: qsTr("No room open")
font.pointSize: 24
}
ListView {
visible: timeline != undefined
anchors.fill: parent
model: timeline
delegate: Text {
text: userId
}
}
}