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