moment/harmonyqml/components/Chat/RoomSidePane/MembersView.qml
2019-05-12 13:17:42 -04:00

31 lines
660 B
QML

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