You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gpt4all/gpt4all-chat/qml/MyTextField.qml

15 lines
276 B
QML

import QtCore
import QtQuick
import QtQuick.Controls
import QtQuick.Controls.Basic
TextField {
id: myTextField
padding: 10
background: Rectangle {
implicitWidth: 150
color: theme.backgroundDark
radius: 10
}
color: theme.textColor
}