linphone-desktop/Linphone/view/Control/Display/RoundedPane.qml
2024-09-19 08:38:49 +02:00

15 lines
No EOL
333 B
QML

import QtQuick
import QtQuick.Controls as Control
import Linphone
Control.Control {
id: mainItem
// width: 360 * DefaultStyle.dp
property color backgroundColor: DefaultStyle.grey_0
padding: 10 * DefaultStyle.dp
background: Rectangle {
anchors.fill: parent
radius: 15 * DefaultStyle.dp
color: mainItem.backgroundColor
}
}