mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 03:18:07 +00:00
21 lines
No EOL
249 B
QML
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
|
|
}
|
|
}
|
|
}
|
|
|