mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
2904018173
Structure of the all subsection of the settings section has the same high level structure Fixes #5650
31 lines
563 B
QML
31 lines
563 B
QML
import QtQuick 2.13
|
|
|
|
import shared.status 1.0
|
|
import StatusQ.Controls 0.1
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Components 0.1
|
|
import utils 1.0
|
|
|
|
import "../../stores"
|
|
import "../../controls"
|
|
|
|
Item {
|
|
id: root
|
|
|
|
property WalletStore walletStore
|
|
|
|
Column {
|
|
id: column
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
width: parent.width
|
|
|
|
PermissionsListView {
|
|
id: permissionsList
|
|
width: parent.width
|
|
walletStore: root.walletStore
|
|
}
|
|
}
|
|
}
|