moment/src/qml/Chat/RoomSidePane/RoomSidePane.qml

19 lines
393 B
QML
Raw Normal View History

import QtQuick 2.12
import QtQuick.Layouts 1.12
2019-05-13 03:17:42 +10:00
import "../../Base"
2019-08-28 12:46:31 +10:00
Rectangle {
2019-05-13 03:17:42 +10:00
id: roomSidePane
color: theme.chat.roomSidePane.background
2019-05-13 03:17:42 +10:00
property bool collapsed: false
property var activeView: null
2019-07-16 19:29:47 +10:00
property int currentSpacing: collapsed ? 0 : theme.spacing
2019-07-13 08:17:02 +10:00
Behavior on currentSpacing { HNumberAnimation {} }
MembersView {
2019-05-13 03:17:42 +10:00
anchors.fill: parent
}
}