blob: d060dee7241b6618397983ea1751f9aebb7eb8da [file] [log] [blame]
import QtQuick 2.0
import QtQuick.Controls 2.15
import QtQuick.Controls.Material 2.0
import QtQuick.Layouts 1.0
ColumnLayout {
id: root
RowLayout {
Layout.fillWidth: true
Button {
Layout.alignment: Qt.AlignTop
icon.source: "qrc:///icons/play-circle.svg"
icon.color: Material.color(Material.Grey, Material.Shade600)
flat: true
}
ColumnLayout {
Layout.fillWidth: true
Layout.fillHeight: true
TextArea {
Layout.fillWidth: true
Layout.fillHeight: true
id: code
font.family: "monospace"
text: "Hello"
selectByMouse: true
wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
}
Label {
Layout.fillWidth: true
font.family: "monospace"
text: "Result\nasdfasdf\nasdad"
}
}
}
InsertRow {
}
}