linphone-desktop/Linphone/view/Layout/Section.qml
Gaelle Braud e415033943 Meeting UI
Change meeting time set so a it can spread over two days without being an all day conf
2024-04-22 18:16:31 +02:00

29 lines
No EOL
729 B
QML

import QtQuick 2.15
import QtQuick.Layouts
import Linphone
/*
Layout with line separator used in several views
*/
ColumnLayout {
spacing: 15 * DefaultStyle.dp
property alias content: contentLayout.data
property alias contentLayout: contentLayout
implicitHeight: contentLayout.implicitHeight + 1 * DefaultStyle.dp + spacing
ColumnLayout {
id: contentLayout
spacing: 8 * DefaultStyle.dp
// width: parent.width
// Layout.fillWidth: true
// Layout.preferredHeight: childrenRect.height
// Layout.preferredWidth: parent.width
// Layout.leftMargin: 8 * DefaultStyle.dp
}
Rectangle {
color: DefaultStyle.main2_200
Layout.fillWidth: true
Layout.preferredHeight: 1 * DefaultStyle.dp
width: parent.width
}
}