status-desktop/ui/app/AppLayouts/Onboarding/panels/AccountListPanel.qml

35 lines
791 B
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import StatusQ.Core 0.1
import utils 1.0
2020-06-03 20:50:59 +00:00
import "../controls"
StatusListView {
id: accountsView
2020-06-13 15:17:54 +00:00
property var isSelected: function () {}
property var onAccountSelect: function () {}
2020-06-03 20:50:59 +00:00
anchors.fill: parent
focus: true
spacing: Style.current.halfPadding
2020-06-03 20:50:59 +00:00
delegate: AccountViewDelegate {
username: model.username
image: model.thumbnailImage
keyUid: model.keyUid
address: model.address || ''
colorHash: model.colorHash
colorId: model.colorId
isSelected: function (index, keyUid) {
return accountsView.isSelected(index, keyUid)
2020-06-13 15:17:54 +00:00
}
onAccountSelect: function (index) {
accountsView.onAccountSelect(index)
}
2020-06-03 20:50:59 +00:00
}
}