2019-03-26 18:19:55 +11:00
|
|
|
import QtQuick 2.7
|
2019-04-29 05:45:42 +10:00
|
|
|
import QtQuick.Layouts 1.3
|
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-06-29 08:12:45 +10:00
|
|
|
model: models.accounts
|
2019-03-26 18:19:55 +11:00
|
|
|
delegate: AccountDelegate {}
|
|
|
|
}
|