2023-12-26 11:20:38 +01:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Layouts 1.15
|
|
|
|
|
|
|
|
import AppLayouts.Wallet.views 1.0
|
|
|
|
|
2024-05-22 11:13:39 +03:00
|
|
|
import shared.stores 1.0 as SharedStores
|
|
|
|
|
2023-12-26 11:20:38 +01:00
|
|
|
import "../../stores"
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property ContactsStore contactsStore
|
2024-05-22 11:13:39 +03:00
|
|
|
property SharedStores.NetworkConnectionStore networkConnectionStore
|
2024-11-05 19:51:17 +01:00
|
|
|
|
|
|
|
signal sendToAddressRequested(string address)
|
2023-12-26 11:20:38 +01:00
|
|
|
|
|
|
|
SavedAddresses {
|
|
|
|
contactsStore: root.contactsStore
|
2024-02-02 10:55:56 +01:00
|
|
|
networkConnectionStore: root.networkConnectionStore
|
2024-11-05 19:51:17 +01:00
|
|
|
|
|
|
|
onSendToAddressRequested: root.sendToAddressRequested(address)
|
2023-12-26 11:20:38 +01:00
|
|
|
}
|
|
|
|
}
|