mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-23 11:18:30 +00:00
37 lines
514 B
QML
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'
|
|
}
|
|
}
|
|
}
|
|
}
|