Implemented terminal screen

This commit is contained in:
Yury Shuvakin
2022-08-25 09:19:00 +03:00
parent d1ba61acd8
commit 79518df613
6 changed files with 87 additions and 0 deletions

11
qml/Controls/TextArea.qml Normal file
View File

@@ -0,0 +1,11 @@
import QtQuick 2.12
import QtQuick.Controls 2.12
import Utils 1.0
TextArea {
color: Palette.textColor
selectByMouse: true
selectionColor: Palette.alternativeBackgroundColor
font.pixelSize: 16
}