linphone-desktop/Linphone/view/Item/RoundedBackgroundControl.qml
Gaelle Braud fb4ee6b579 audio settings
video settings
app settings in settings file
2024-03-07 09:07:56 +01:00

19 lines
No EOL
507 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
anchors.leftMargin: 10 * DefaultStyle.dp
anchors.rightMargin: 10 * DefaultStyle.dp
anchors.topMargin: 10 * DefaultStyle.dp
anchors.bottomMargin: 10 * DefaultStyle.dp
}
}