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.
31 lines
747 B
31 lines
747 B
import QtQuick 2.13
|
|
import "../aCommon"
|
|
import "../"
|
|
|
|
Item {
|
|
id: root
|
|
height: 38
|
|
width: 400
|
|
property bool isChecked: false
|
|
property string title: "check me pouya!"
|
|
Row {
|
|
anchors.fill: parent
|
|
Rectangle {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
height: 24
|
|
width: 24
|
|
radius: Setting.mediumRadius
|
|
color: "transparent"
|
|
border.width: 1
|
|
border.color: Colors.tertiaryEnable
|
|
}
|
|
Text {
|
|
leftPadding: 13
|
|
height: parent.height
|
|
verticalAlignment: Text.AlignVCenter
|
|
color: Colors.tertiaryEnable
|
|
text: root.title
|
|
font: Fonts.h5
|
|
}
|
|
}
|
|
}
|
|
|