status-desktop/storybook/pages/EditSettingsPanelPage.qml
dlipicar ee79b494ec
Network selection improvements (#17184)
* feat(network): implement new networks selection screen

* fix: proper handling of test network icon

* feat: changes to Network selector

* feat: implement blockchain explorers menu

* chore: move networks related properties and functions to NetworksStore

* feat: remove usage of tiny network icons

* fix: misc fixes

* chore: change exception with error
2025-02-19 12:22:45 -03:00

57 lines
1.5 KiB
QML

import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import mainui 1.0
import shared.stores 1.0 as SharedStores
import AppLayouts.stores 1.0 as AppLayoutsStores
import AppLayouts.Communities.panels 1.0
import Storybook 1.0
SplitView {
id: root
SplitView.fillWidth: true
Popups {
popupParent: root
sharedRootStore: SharedStores.RootStore {}
rootStore: AppLayoutsStores.RootStore {}
communityTokensStore: SharedStores.CommunityTokensStore {}
networksStore: SharedStores.NetworksStore {}
}
EditSettingsPanel {
id: panel
SplitView.fillWidth: true
SplitView.fillHeight: true
name: communityEditor.name
color: communityEditor.color
logoImageData: communityEditor.image
description: communityEditor.description
bannerImageData: communityEditor.banner
shardingEnabled: communityEditor.shardingEnabled
shardIndex: communityEditor.shardIndex
onShardIndexEdited: {
panel.shardingInProgress = true
communityEditor.shardIndex = shardIndex
panel.shardingInProgress = false
}
}
ScrollView {
SplitView.minimumWidth: 300
SplitView.preferredWidth: 300
CommunityInfoEditor {
id: communityEditor
anchors.fill: parent
colorVisible: true
}
}
}
// category: Panels
// https://www.figma.com/file/17fc13UBFvInrLgNUKJJg5/Kuba⎜Desktop?node-id=3132%3A383870&mode=dev