Khushboo Mehta 2e2c54229b fix(@desktop/onboarding): All chat names are not displayed on the popup
There is no need to allow user to scroll here as all the 5 chat name options should be visible on the popup already.

fixes #3823
2021-11-05 11:02:45 -04:00

31 lines
717 B
QML

import QtQuick 2.13
import QtQuick.Controls 2.13
import "../controls"
import utils 1.0
ListView {
id: accountsView
property var isSelected: function () {}
property var onAccountSelect: function () {}
anchors.fill: parent
focus: true
spacing: Style.current.halfPadding
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)
}
onAccountSelect: function (index) {
accountsView.onAccountSelect(index)
}
}
}