32 lines
733 B
QML
Raw Normal View History

2020-06-17 15:18:31 -04:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import "../controls"
import utils 1.0
2020-06-03 16:50:59 -04:00
ListView {
id: accountsView
2020-06-13 11:17:54 -04:00
property var isSelected: function () {}
property var onAccountSelect: function () {}
2020-06-03 16:50:59 -04:00
anchors.fill: parent
focus: true
spacing: Style.current.smallPadding
2021-04-30 14:15:50 -04:00
clip: true
2020-06-03 16:50:59 -04:00
delegate: AccountViewDelegate {
username: model.username
identicon: model.thumbnailImage || model.identicon
keyUid: model.keyUid
address: model.address || ''
isSelected: function (index, keyUid) {
return accountsView.isSelected(index, keyUid)
2020-06-13 11:17:54 -04:00
}
onAccountSelect: function (index) {
accountsView.onAccountSelect(index)
}
2020-06-03 16:50:59 -04:00
}
}