linphone-desktop/tests/ui/views/Calls/Calls.qml
2016-10-05 15:42:38 +02:00

37 lines
514 B
QML

import QtQuick 2.7
import QtQuick.Layouts 1.3
import QtQuick.Window 2.2
import QtQuick.Controls 2.0
import Linphone 1.0
Window {
minimumHeight: 480
minimumWidth: 640
id: window
Paned {
anchors.fill: parent
rightLimit: 50
leftLimit: 100
childA: Rectangle {
anchors.fill: parent
color: 'orange'
Text {
text: 'hello'
}
}
childB: Rectangle {
anchors.fill: parent
color: 'green'
Text {
text: 'hello2'
}
}
}
}