2022-03-01 11:14:13 +01:00
|
|
|
import QtQuick 2.13
|
|
|
|
|
2023-12-26 11:19:41 +01:00
|
|
|
RightTabBaseView {
|
2022-03-01 11:14:13 +01:00
|
|
|
id: root
|
2023-02-20 13:57:45 +03:00
|
|
|
|
2024-11-05 19:51:17 +01:00
|
|
|
signal sendToAddressRequested(string address)
|
|
|
|
|
2023-12-26 11:19:41 +01:00
|
|
|
SavedAddresses {
|
2024-01-16 14:42:05 +07:00
|
|
|
objectName: "savedAddressesArea"
|
2023-12-26 11:19:41 +01:00
|
|
|
width: root.width
|
|
|
|
height: root.height - header.height
|
2022-09-05 11:15:47 +02:00
|
|
|
|
2023-12-26 11:19:41 +01:00
|
|
|
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)
|
2022-03-01 11:14:13 +01:00
|
|
|
}
|
|
|
|
}
|