2022-03-09 14:10:14 +01:00
|
|
|
import QtQuick 2.6
|
|
|
|
|
import QtQuick.Layouts 1.0
|
|
|
|
|
import QtQuick.Controls 2.1
|
|
|
|
|
import QtQuick.Controls.Material 2.0
|
|
|
|
|
|
|
|
|
|
TextArea {
|
|
|
|
|
id: seedtext
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
Layout.minimumHeight: 80
|
2022-03-30 18:00:36 +02:00
|
|
|
rightPadding: constants.paddingLarge
|
|
|
|
|
leftPadding: constants.paddingLarge
|
2022-03-09 14:10:14 +01:00
|
|
|
wrapMode: TextInput.WordWrap
|
|
|
|
|
font.bold: true
|
2022-03-30 18:00:36 +02:00
|
|
|
font.pixelSize: constants.fontSizeLarge
|
|
|
|
|
inputMethodHints: Qt.ImhSensitiveData | Qt.ImhPreferLowercase | Qt.ImhNoPredictiveText
|
2022-03-09 14:10:14 +01:00
|
|
|
background: Rectangle {
|
|
|
|
|
color: "transparent"
|
|
|
|
|
border.color: Material.accentColor
|
|
|
|
|
}
|
|
|
|
|
}
|