linphone-desktop/tests/ui/main_window.qml
2016-09-05 11:51:28 +02:00

13 lines
186 B
QML

import QtQuick 2.5
import QtQuick.Window 2.2
Window {
visible: true
width: 800
height: 600
Text {
anchors.centerIn: parent
text: "Hello World!"
}
}