amnezia-client/client/ui/qml/Components/AwgTextField.qml
2025-07-06 21:32:15 +08:00

15 lines
254 B
QML

pragma ComponentBehavior: Bound
import QtQuick
import QtQuick.Layouts
import "../Controls2"
TextFieldWithHeaderType {
Layout.fillWidth: true
Layout.topMargin: 16
textField.validator: IntValidator { bottom: 0 }
checkEmptyText: true
}