moment/harmonyqml/components/sidePane/AccountList.qml

12 lines
207 B
QML
Raw Normal View History

import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.4
ListView {
id: accountList
spacing: 8
model: Backend.models.accounts
delegate: AccountDelegate {}
clip: true
}