2019-07-08 13:52:41 +10:00
|
|
|
// Copyright 2019 miruka
|
|
|
|
// This file is part of harmonyqml, licensed under LGPLv3.
|
|
|
|
|
2019-07-13 19:39:01 +10:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
2019-05-14 03:15:03 +10:00
|
|
|
import "../Base"
|
2019-03-26 18:19:55 +11:00
|
|
|
|
2019-05-14 03:15:03 +10:00
|
|
|
HListView {
|
2019-04-21 07:45:51 +10:00
|
|
|
id: accountList
|
2019-04-29 02:40:18 +10:00
|
|
|
clip: true
|
|
|
|
|
2019-07-05 06:01:44 +10:00
|
|
|
model: accounts
|
2019-03-26 18:19:55 +11:00
|
|
|
delegate: AccountDelegate {}
|
|
|
|
}
|