2019-03-26 18:19:55 +11:00
|
|
|
import QtQuick 2.7
|
|
|
|
import QtQuick.Controls 2.2
|
|
|
|
import QtQuick.Layouts 1.4
|
|
|
|
|
|
|
|
ListView {
|
|
|
|
id: "accountList"
|
|
|
|
spacing: 8
|
2019-04-13 03:18:46 +10:00
|
|
|
model: Backend.models.accounts
|
2019-03-26 18:19:55 +11:00
|
|
|
delegate: AccountDelegate {}
|
|
|
|
clip: true
|
|
|
|
}
|