moment/harmonyqml/components/SidePane/AccountList.qml
2019-04-28 15:52:26 -04:00

18 lines
343 B
QML

import QtQuick 2.7
import QtQuick.Layouts 1.3
ListView {
id: accountList
clip: true
spacing: 8
topMargin: spacing
bottomMargin: topMargin
Layout.leftMargin:
sidePane.width <= (sidePane.Layout.minimumWidth + spacing) ?
0 : spacing
model: Backend.models.accounts
delegate: AccountDelegate {}
}