mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-08 02:33:37 +00:00
13 lines
221 B
QML
13 lines
221 B
QML
|
import QtQuick 2.2
|
||
|
import QtQuick.Controls 1.2
|
||
|
import QtQuick.Layouts 1.1
|
||
|
import QtQuick.Window 2.1
|
||
|
|
||
|
ApplicationWindow
|
||
|
{
|
||
|
width: 400
|
||
|
height: 300
|
||
|
title: "Hello World"
|
||
|
Component.onCompleted: visible = true
|
||
|
}
|