mirror of
https://github.com/mappu/miqt.git
synced 2025-04-08 14:40:23 +00:00
21 lines
315 B
QML
21 lines
315 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Window
|
|
|
|
Window {
|
|
width: 640
|
|
height: 480
|
|
visible: true
|
|
|
|
title: "Hello World"
|
|
|
|
ListView {
|
|
anchors.fill: parent
|
|
model: myModel
|
|
delegate: Row {
|
|
spacing: 10
|
|
Text { text: display }
|
|
}
|
|
}
|
|
}
|