mirror of
https://github.com/status-im/nimqml.git
synced 2025-02-24 12:28:09 +00:00
10 lines
168 B
QML
10 lines
168 B
QML
import QtQuick 2.8
|
|
import QtQuick.Controls 2.3
|
|
|
|
ApplicationWindow {
|
|
width: 400
|
|
height: 300
|
|
title: "Hello World"
|
|
Component.onCompleted: visible = true
|
|
}
|