Stefan 7cf0170a8a chore(CPP): integrate tokens balance in UI POC
Integrate token count in UI
Use delete later for QML exposed items to avoid errors

Closes #6321
2022-08-05 10:40:04 +02:00

19 lines
280 B
QML

import QtQuick
TextInput {
width: 416
height: 44
font.pointSize: 23
verticalAlignment: TextInput.AlignVCenter
clip: true
Rectangle {
anchors.fill: parent
border.width: 1
border.color: "#55555555"
z: parent.z - 1
}
}