mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
319b5dd23e
- create new `ShareProfileDialog` with QR code + links - align the context menu items with latest Figma designs - add `isBlocked` to contact icons - adjust SB to show more options and showcase models Fixes #13416 Fixes #13417
32 lines
598 B
QML
32 lines
598 B
QML
import QtQuick 2.14
|
|
|
|
import StatusQ.Popups.Dialog 0.1
|
|
|
|
import shared.views 1.0
|
|
|
|
StatusDialog {
|
|
id: root
|
|
|
|
property var parentPopup
|
|
|
|
property string publicKey
|
|
|
|
property var profileStore
|
|
property var contactsStore
|
|
property var networkConnectionStore
|
|
|
|
width: 640
|
|
padding: 0
|
|
|
|
header: null
|
|
footer: null
|
|
|
|
contentItem: ProfileDialogView {
|
|
publicKey: root.publicKey
|
|
profileStore: root.profileStore
|
|
contactsStore: root.contactsStore
|
|
networkConnectionStore: root.networkConnectionStore
|
|
onCloseRequested: root.close()
|
|
}
|
|
}
|