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-03-26 18:19:55 +11:00
|
|
|
|
|
|
|
ListView {
|
2019-04-21 07:45:51 +10:00
|
|
|
id: accountList
|
2019-04-29 02:40:18 +10:00
|
|
|
clip: true
|
|
|
|
|
2019-03-26 18:19:55 +11:00
|
|
|
spacing: 8
|
2019-04-29 02:40:18 +10:00
|
|
|
topMargin: spacing
|
2019-04-29 04:20:30 +10:00
|
|
|
bottomMargin: topMargin
|
2019-04-29 05:52:26 +10:00
|
|
|
Layout.leftMargin:
|
|
|
|
sidePane.width <= (sidePane.Layout.minimumWidth + spacing) ?
|
|
|
|
0 : spacing
|
2019-04-29 02:40:18 +10:00
|
|
|
|
|
|
|
model: Backend.models.accounts
|
2019-03-26 18:19:55 +11:00
|
|
|
delegate: AccountDelegate {}
|
|
|
|
}
|