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

32 lines
733 B
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import "../controls"
import utils 1.0
2020-06-03 20:50:59 +00:00
ListView {
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.smallPadding
2021-04-30 18:15:50 +00:00
clip: true
2020-06-03 20:50:59 +00: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 15:17:54 +00:00
}
onAccountSelect: function (index) {
accountsView.onAccountSelect(index)
}
2020-06-03 20:50:59 +00:00
}
}