You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

35 lines
785 B

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
// }
}
}