mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-13 15:55:18 +00:00
9629a145da
[Design](https://www.figma.com/file/17fc13UBFvInrLgNUKJJg5/Kuba⎜Desktop?type=design&node-id=31229-627216&mode=design&t=KoQOW7vmoNc7f41m-0) 1. Update header layout and size 2. Add OverviewSettingsPanel in storybook feat: Update Community Overview Header based on the new design Removing squish tests related to the community identicon in the Overview page. The identicon is removed in the new designs
34 lines
747 B
QML
34 lines
747 B
QML
import QtQuick 2.14
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import AppLayouts.Communities.panels 1.0
|
|
|
|
SplitView {
|
|
id: root
|
|
SplitView.fillWidth: true
|
|
|
|
OverviewSettingsPanel {
|
|
SplitView.fillWidth: true
|
|
SplitView.fillHeight: true
|
|
|
|
name: communityEditor.name
|
|
description: communityEditor.description
|
|
logoImageData: communityEditor.image
|
|
color: communityEditor.color
|
|
|
|
editable: communityEditor.isCommunityEditable
|
|
owned: communityEditor.amISectionAdmin
|
|
}
|
|
|
|
Pane {
|
|
SplitView.minimumWidth: 300
|
|
SplitView.preferredWidth: 300
|
|
|
|
CommunityInfoEditor{
|
|
id: communityEditor
|
|
anchors.fill: parent
|
|
}
|
|
}
|
|
}
|