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.

36 lines
945 B

import QtQuick 2.15
import I.hate.dictators 1.0
Rectangle {
required property CountryType country
color: "lightgrey"
Column {
width: parent.width
Image {
id: choosenFlag
source: country?'qrc:/assets/flags/'+country.iso+'.svg':''
fillMode: Image.PreserveAspectFit
width: parent.width
}
Text {
id: nameText
text: country ? country.name : ""
font.pixelSize: 50
anchors.horizontalCenter: parent.horizontalCenter
}
Text {
text: country ? country.capital : ""
font.pixelSize: nameText.font.pixelSize
anchors.horizontalCenter: parent.horizontalCenter
}
Text {
text: country ? country.region : ""
font.pixelSize: nameText.font.pixelSize
anchors.horizontalCenter: parent.horizontalCenter
}
}
}