moment/harmonyqml/components/SidePane/AccountList.qml

16 lines
262 B
QML
Raw Normal View History

import QtQuick 2.7
2019-04-29 05:36:43 +10:00
import QtQuick.Layouts 1.0
ListView {
id: accountList
clip: true
spacing: 8
Layout.leftMargin: spacing
topMargin: spacing
bottomMargin: topMargin
model: Backend.models.accounts
delegate: AccountDelegate {}
}