mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-13 15:55:18 +00:00
0c2674e7cb
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(....)
25 lines
547 B
QML
25 lines
547 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import AppLayouts.Wallet.views 1.0
|
|
|
|
import shared.stores 1.0 as SharedStores
|
|
|
|
import "../../stores"
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
|
|
property ContactsStore contactsStore
|
|
property SharedStores.NetworkConnectionStore networkConnectionStore
|
|
|
|
signal sendToAddressRequested(string address)
|
|
|
|
SavedAddresses {
|
|
contactsStore: root.contactsStore
|
|
networkConnectionStore: root.networkConnectionStore
|
|
|
|
onSendToAddressRequested: root.sendToAddressRequested(address)
|
|
}
|
|
}
|