mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
3ac13a7678
Part 1 of #13088
48 lines
989 B
QML
48 lines
989 B
QML
import QtQuick 2.14
|
|
import QtQuick.Layouts 1.14
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import "../stores"
|
|
import "../panels"
|
|
|
|
FocusScope {
|
|
id: root
|
|
|
|
property var store
|
|
property var contactsStore
|
|
property var networkConnectionStore
|
|
|
|
property var sendModal
|
|
|
|
property alias header: header
|
|
property alias headerButton: header.headerButton
|
|
property alias networkFilter: header.networkFilter
|
|
|
|
default property Item content
|
|
|
|
Component.onCompleted: {
|
|
content.parent = contentWrapper
|
|
}
|
|
|
|
ColumnLayout {
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
spacing: 0
|
|
|
|
WalletHeader {
|
|
id: header
|
|
Layout.fillWidth: true
|
|
overview: RootStore.overview
|
|
store: root.store
|
|
walletStore: RootStore
|
|
networkConnectionStore: root.networkConnectionStore
|
|
}
|
|
|
|
Column {
|
|
id: contentWrapper
|
|
Layout.fillWidth: true
|
|
}
|
|
}
|
|
}
|