moment/src/qml/Chat/RoomSidePane/RoomSidePane.qml
2019-08-27 22:46:31 -04:00

19 lines
393 B
QML

import QtQuick 2.12
import QtQuick.Layouts 1.12
import "../../Base"
Rectangle {
id: roomSidePane
color: theme.chat.roomSidePane.background
property bool collapsed: false
property var activeView: null
property int currentSpacing: collapsed ? 0 : theme.spacing
Behavior on currentSpacing { HNumberAnimation {} }
MembersView {
anchors.fill: parent
}
}