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

23 lines
466 B
QML
Raw Normal View History

2019-07-08 13:52:41 +10:00
// Copyright 2019 miruka
// This file is part of harmonyqml, licensed under LGPLv3.
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
property int normalSpacing: 8
2019-07-13 08:17:02 +10:00
property int currentSpacing: collapsed ? 0 : normalSpacing
2019-07-13 08:17:02 +10:00
Behavior on currentSpacing { HNumberAnimation {} }
MembersView {
2019-05-13 03:17:42 +10:00
anchors.fill: parent
}
}