linphone-desktop/Linphone/view/qml/App/Main.qml
Julien Wadel 82791dfed4 Initial
2023-10-02 14:37:16 +02:00

21 lines
No EOL
245 B
QML

import QtQuick 2.15
import QtQuick.Layouts 1.0
import Linphone
//import UI 1.0
Window {
width: 640
height: 480
visible: true
title: qsTr("Linphone")
ColumnLayout{
anchors.fill: parent
Login{
height: 100
width: 640
}
}
}