mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-18 11:58:11 +00:00
28 lines
578 B
QML
28 lines
578 B
QML
import QtQuick 2.7
|
|
|
|
import Common.Styles 1.0
|
|
|
|
// =============================================================================
|
|
|
|
Item {
|
|
default property var _content
|
|
readonly property int currentHeight: _content ? _content.height : 0
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
height: currentHeight
|
|
width: parent.maxItemWidth
|
|
|
|
Loader {
|
|
active: !!_content
|
|
anchors.fill: parent
|
|
|
|
sourceComponent: Item {
|
|
id: item
|
|
|
|
data: [ _content ]
|
|
|
|
Component.onCompleted: _content.anchors.centerIn = item
|
|
}
|
|
}
|
|
}
|