status-desktop/ui/app/AppLayouts/Wallet/views/SavedAddressesView.qml
Khushboo Mehta 0c2674e7cb chore(@desktop/wallet): Chnage the send modal mechanism to follow new architecture guidelines.
After this change there is not need to pass sendModal instance from AppMain to other parts of app.
Then SendModal should be launched simply by calling Global.openSendModal(....)
2024-12-04 21:34:12 +01:00

19 lines
420 B
QML

import QtQuick 2.13
RightTabBaseView {
id: root
signal sendToAddressRequested(string address)
SavedAddresses {
objectName: "savedAddressesArea"
width: root.width
height: root.height - header.height
contactsStore: root.contactsStore
networkConnectionStore: root.networkConnectionStore
onSendToAddressRequested: root.sendToAddressRequested(address)
}
}