moment/harmonyqml/components/Chat/RoomSidePane/MembersView.qml
miruka b35e635be4 RoomHeader buttons and RoomSidePane size/collapse
RoomSidePane's size and collapsing is not bound anymore to the
RoomHeader buttons.
2019-05-12 19:01:02 -04:00

29 lines
568 B
QML

import QtQuick 2.7
import QtQuick.Layouts 1.3
import "../../Base"
Column {
property int normalSpacing: 8
leftPadding: roomSidePane.collapsed ? 0 : normalSpacing
rightPadding: leftPadding
ListView {
width: parent.width
height: parent.height
id: memberList
spacing: parent.leftPadding
topMargin: spacing
bottomMargin: topMargin
Behavior on spacing {
NumberAnimation { duration: 120 }
}
model: chatPage.roomInfo.members
delegate: MemberDelegate {}
}
}