mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
13 lines
186 B
QML
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!"
|
|
}
|
|
}
|