mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-12 07:14:37 +00:00
7e1e827148
+ Update the dialog where the user choses the connection to enable or disable the connection option based on flags + Separating the walletConnect flag and browserConnect flag usage so that either one can be disabled without affecting the other feature + Update qml test
52 lines
1.3 KiB
QML
52 lines
1.3 KiB
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import shared.stores 1.0
|
|
|
|
import AppLayouts.stores 1.0 as AppLayoutsStores
|
|
import AppLayouts.Communities.stores 1.0
|
|
import AppLayouts.Profile.stores 1.0 as ProfileStores
|
|
import AppLayouts.Wallet.stores 1.0 as WalletStores
|
|
import "../panels"
|
|
|
|
FocusScope {
|
|
id: root
|
|
|
|
property AppLayoutsStores.RootStore store
|
|
property ProfileStores.ContactsStore contactsStore
|
|
property CommunitiesStore communitiesStore
|
|
property NetworkConnectionStore networkConnectionStore
|
|
|
|
property bool swapEnabled
|
|
|
|
property var sendModal
|
|
|
|
property alias header: header
|
|
property alias headerButton: header.headerButton
|
|
property alias networkFilter: header.networkFilter
|
|
|
|
default property alias content: contentWrapper.children
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
spacing: 0
|
|
|
|
WalletHeader {
|
|
id: header
|
|
Layout.fillWidth: true
|
|
overview: WalletStores.RootStore.overview
|
|
walletStore: WalletStores.RootStore
|
|
networkConnectionStore: root.networkConnectionStore
|
|
loginType: root.store.loginType
|
|
}
|
|
|
|
Item {
|
|
id: contentWrapper
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|
|
}
|