mirror of
https://github.com/helix-editor/helix
synced 2026-07-27 11:10:52 +02:00
19 lines
227 B
QML
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
|
|
}
|
|
}
|