import QtQuick 2.13 import "../" import "../aCommon" Item { height: 38 width: 400 property alias text: idText.text Rectangle { id: idBackGround anchors.fill: parent radius: Setting.mediumRadius color: "transparent" border.color: Colors.tertiaryEnable border.width: 0 clip: true TextInput { id: idText anchors.leftMargin: 2 anchors.rightMargin: 10 anchors.fill: parent font: Fonts.h5 color: Colors.tertiaryEnable verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignVCenter readOnly: true } // MouseArea { // anchors.fill: parent // } } }