1
0
mirror of https://github.com/helix-editor/helix synced 2026-07-27 11:10:52 +02:00
Files
helix/tests/indent/qml.qml
2026-06-20 14:42:38 +09:00

19 lines
227 B
QML

import QtQuick 2.0
Rectangle {
width: 100
height: 100
Text {
text: "hi"
anchors {
top: parent.top
left: parent.left
}
}
Column {
spacing: 4
}
}