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.
34 lines
716 B
34 lines
716 B
import QtQuick 2.15
|
|
import I.hate.dictators 1.0
|
|
|
|
Rectangle {
|
|
width: lv.width
|
|
height: 30
|
|
|
|
required property string name
|
|
required property string iso
|
|
required property CountryType self
|
|
|
|
|
|
Text {
|
|
text: parent.name
|
|
font.pixelSize: 20
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
Image {
|
|
id: flag
|
|
source: "qrc:/assets/flags/"+parent.iso+".svg"
|
|
height: parent.height - 4
|
|
anchors.right: parent.right
|
|
fillMode: Image.PreserveAspectFit
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onClicked: {
|
|
mainWindow.selectedCountry = self
|
|
}
|
|
}
|
|
}
|