2019-03-26 03:19:55 -04:00
|
|
|
import QtQuick 2.7
|
2019-04-28 15:45:42 -04:00
|
|
|
import QtQuick.Layouts 1.3
|
2019-03-26 03:19:55 -04:00
|
|
|
|
|
|
|
ListView {
|
2019-04-20 17:45:51 -04:00
|
|
|
id: accountList
|
2019-04-28 12:40:18 -04:00
|
|
|
clip: true
|
|
|
|
|
2019-03-26 03:19:55 -04:00
|
|
|
spacing: 8
|
2019-04-28 12:40:18 -04:00
|
|
|
topMargin: spacing
|
2019-04-28 14:20:30 -04:00
|
|
|
bottomMargin: topMargin
|
2019-04-28 12:40:18 -04:00
|
|
|
|
2019-05-02 14:31:47 -04:00
|
|
|
model: Backend.accounts
|
2019-03-26 03:19:55 -04:00
|
|
|
delegate: AccountDelegate {}
|
|
|
|
}
|