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

34 lines
682 B
QML
Raw Normal View History

2020-06-03 20:50:59 +00:00
import QtQuick 2.14
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.3
import Qt.labs.platform 1.1
import "./samples/"
import "../../imports"
2020-06-03 20:50:59 +00:00
ListView {
property var accounts: AccountsData {}
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: Theme.smallPadding
2020-06-03 20:50:59 +00:00
delegate: AddressView {
username: model.username
address: model.address
identicon: model.identicon
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
}
##^##*/
2020-06-03 20:50:59 +00:00