10 lines
168 B
QML
Raw Normal View History

2018-11-27 21:57:35 +01:00
import QtQuick 2.8
import QtQuick.Controls 2.3
ApplicationWindow {
width: 400
height: 300
title: "Hello World"
Component.onCompleted: visible = true
}