linphone-desktop/Linphone/view/Control/Display/RoundedPane.qml
Gaelle Braud 06647f002a resize the app according to screen definition
fix ui size according to screen resolution
2025-03-07 11:36:34 +01:00

15 lines
388 B
QML

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