mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 22:36:24 +00:00
10 lines
172 B
QML
10 lines
172 B
QML
|
import QtQuick 2.3
|
||
|
import QtQuick.Controls 1.2
|
||
|
|
||
|
ApplicationWindow {
|
||
|
width: 100
|
||
|
height: 100
|
||
|
objectName: "testWindow"
|
||
|
Component.onCompleted: visible = true
|
||
|
}
|