import QtQuick 2.15 import QtQuick.Controls 2.15 TextField { id: passwordFieldPin focus: true visible: true selectByMouse: true placeholderText: "PIN" property alias text: passwordFieldPin.text echoMode: TextInput.Password ? TextInput.Password : TextInput.Normal selectionColor: config.color font.family: Qt.resolvedUrl("../fonts") ? "Segoe UI" : segoeui.name font.pointSize: 10.9 renderType: Text.NativeRendering color: "black" x: 3 horizontalAlignment: TextInput.AlignLeft width: 289 height: 32 background: Rectangle { id: passFieldBackgroundPin color: "white" x: -3 width: parent.width height: parent.height } }