moment/harmonyqml/components/Chat/RoomSidePane/RoomSidePane.qml

20 lines
333 B
QML
Raw Normal View History

2019-05-13 03:17:42 +10:00
import QtQuick 2.7
import QtQuick.Layouts 1.3
import "../../Base"
HRectangle {
id: roomSidePane
property bool collapsed: false
property var activeView: null
2019-05-13 03:17:42 +10:00
HColumnLayout {
anchors.fill: parent
MembersView {
Layout.fillHeight: true
Layout.fillWidth: true
}
}
}