linphone-desktop/Linphone/view/Control/Display/RoundedPane.qml
2024-10-17 13:21:39 +02:00

15 lines
334 B
QML

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