moment/src/qml/SidePane/AccountList.qml

12 lines
167 B
QML
Raw Normal View History

import QtQuick 2.7
import QtQuick.Layouts 1.3
2019-05-14 03:15:03 +10:00
import "../Base"
2019-05-14 03:15:03 +10:00
HListView {
id: accountList
clip: true
2019-07-05 06:01:44 +10:00
model: accounts
delegate: AccountDelegate {}
}