aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/intvalidator.qml
blob: f08732742b83a4dfdb7ad4b71ccb1ee4549195cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//![0]
import QtQuick

TextInput {
    focus: true
    validator: IntValidator {
        bottom: 0
        top: 100
    }
    color: acceptableInput ? "black" : "red";
}
//![0]