mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
5c0f1981ad
- the goal of this PR is to get some bsais UI building blocks done for the followup PRs - the order of showcase tabs now is: Communities/Accounts/Collectibles/Assets - there will be further changes to accomodate for different types of backend models as those get developed (for other users' profiles) Fixes #9664
32 lines
580 B
QML
32 lines
580 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 communitiesModel
|
|
|
|
width: 640
|
|
padding: 0
|
|
|
|
header: null
|
|
footer: null
|
|
|
|
contentItem: ProfileDialogView {
|
|
publicKey: root.publicKey
|
|
profileStore: root.profileStore
|
|
contactsStore: root.contactsStore
|
|
communitiesModel: root.communitiesModel
|
|
onCloseRequested: root.close()
|
|
}
|
|
}
|