linphone-desktop/Linphone/view/App/Main.qml
Julien Wadel 23c0b9bd42 Add an example of Cpp model for views.
Remove qml folder.
Update SDK
2023-10-03 15:44:20 +02:00

21 lines
No EOL
249 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
LoginPage{
height: 100
width: 640
}
}
}