blob: d060dee7241b6618397983ea1751f9aebb7eb8da [file] [log] [blame]
swissChili23958ca2022-02-21 19:23:34 -08001import QtQuick 2.0
2import QtQuick.Controls 2.15
3import QtQuick.Controls.Material 2.0
4import QtQuick.Layouts 1.0
5
6ColumnLayout {
7 id: root
8
9 RowLayout {
10 Layout.fillWidth: true
11
12 Button {
13 Layout.alignment: Qt.AlignTop
14 icon.source: "qrc:///icons/play-circle.svg"
15 icon.color: Material.color(Material.Grey, Material.Shade600)
16 flat: true
17 }
18
19 ColumnLayout {
20 Layout.fillWidth: true
21 Layout.fillHeight: true
22
23 TextArea {
24 Layout.fillWidth: true
25 Layout.fillHeight: true
26 id: code
27 font.family: "monospace"
28 text: "Hello"
29 selectByMouse: true
30 wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
31 }
32
33 Label {
34 Layout.fillWidth: true
35 font.family: "monospace"
36 text: "Result\nasdfasdf\nasdad"
37 }
38 }
39 }
40
41 InsertRow {
42
43 }
44}