mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
15 lines
340 B
QML
15 lines
340 B
QML
import QtQuick
|
|
import QtQuick.Controls.Basic 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
|
|
}
|
|
}
|