TG-PlatformPlus/qml/Style/TextFieldSetStyle.qml

13 lines
253 B
QML
Raw Permalink Normal View History

2026-03-02 14:29:58 +08:00
import QtQuick
import QtQuick.Controls.Styles
TextFieldStyle {
textColor: "black"
background: Rectangle {
radius: 5
implicitWidth: 300
implicitHeight: 50
border.width: 1
border.color: "#e3e5e7"
}
}