status-desktop/ui/imports/shared/popups/ProfileDialog.qml
Alex Jbanca 3a3c3204fa
fix(ProfileShowcase): Add live preview support in the profile view (#13972)
* fix(ProfileShowcase): Add live preview support in the profile view

* Update ui/imports/shared/views/profile/ProfileShowcaseView.qml

Co-authored-by: Lukáš Tinkl <lukast@status.im>

---------

Co-authored-by: Lukáš Tinkl <lukast@status.im>
2024-03-14 19:31:38 +02:00

37 lines
729 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
property var dirtyValues: ({})
property bool dirty: false
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()
dirtyValues: root.dirtyValues
dirty: root.dirty
}
}