mirror of
https://github.com/status-im/dotherside.git
synced 2025-02-12 12:46:24 +00:00
14 lines
257 B
QML
14 lines
257 B
QML
import QtQuick 2.5
|
|
import QtQuick.Controls 1.4
|
|
|
|
ApplicationWindow {
|
|
width: 100
|
|
height: 100
|
|
objectName: "testWindow"
|
|
Component.onCompleted: {
|
|
visible = true
|
|
console.log(testObject)
|
|
console.log(testObject.name)
|
|
}
|
|
}
|