15 lines
254 B
QML
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
|
|
}
|