mirror of
https://github.com/status-im/nimqml.git
synced 2025-02-24 20:38:12 +00:00
20 lines
383 B
QML
20 lines
383 B
QML
import QtQuick 2.8
|
|
import QtQuick.Controls 2.3
|
|
import QtQuick.Layouts 1.3
|
|
|
|
ApplicationWindow {
|
|
width: 400
|
|
height: 300
|
|
title: "SimpleData"
|
|
|
|
Component.onCompleted: visible = true
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
SpinBox { value: qVar1}
|
|
TextField { text: qVar2}
|
|
CheckBox { checked: qVar3}
|
|
SpinBox { value: qVar4 }
|
|
}
|
|
}
|