status-desktop/ui/onboarding/Login/AccountList.qml

35 lines
821 B
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
2020-06-03 20:50:59 +00:00
import "./samples/"
import "../../imports"
2020-06-03 20:50:59 +00:00
ListView {
property var accounts: AccountsData {}
2020-06-13 15:17:54 +00:00
property var isSelected: function () {}
property var onAccountSelect: function () {}
2020-06-03 20:50:59 +00:00
id: addressesView
anchors.fill: parent
2020-06-03 20:50:59 +00:00
model: accounts
focus: true
spacing: Style.current.smallPadding
2020-06-03 20:50:59 +00:00
delegate: AddressView {
username: model.username
address: model.address
identicon: model.thumbnailImage || model.identicon
2020-06-13 15:17:54 +00:00
isSelected: function (index, address) {
return addressesView.isSelected(index, address)
}
onAccountSelect: function (index) {
addressesView.onAccountSelect(index)
}
2020-06-03 20:50:59 +00:00
}
}
2020-06-03 20:50:59 +00:00
/*##^##
Designer {
D{i:0;autoSize:true;height:480;width:640}
2020-06-03 20:50:59 +00:00
}
##^##*/