34 lines
755 B
QML
34 lines
755 B
QML
|
import QtQuick 2.15
|
||
|
import QtQuick.Controls 2.15
|
||
|
import QtQuick.Layouts 1.15
|
||
|
|
||
|
import AppLayouts.Communities.panels 1.0
|
||
|
|
||
|
import Storybook 1.0
|
||
|
|
||
|
SplitView {
|
||
|
id: root
|
||
|
SplitView.fillWidth: true
|
||
|
|
||
|
EditSettingsPanel {
|
||
|
SplitView.fillWidth: true
|
||
|
SplitView.fillHeight: true
|
||
|
name: communityEditor.name
|
||
|
color: communityEditor.color
|
||
|
logoImageData: communityEditor.image
|
||
|
description: communityEditor.description
|
||
|
bannerImageData: communityEditor.banner
|
||
|
}
|
||
|
|
||
|
ScrollView {
|
||
|
SplitView.minimumWidth: 300
|
||
|
SplitView.preferredWidth: 300
|
||
|
|
||
|
CommunityInfoEditor{
|
||
|
id: communityEditor
|
||
|
anchors.fill: parent
|
||
|
colorVisible: true
|
||
|
}
|
||
|
}
|
||
|
}
|