2019-03-15 16:53:40 +00:00
|
|
|
import QtQuick 2.4
|
|
|
|
import Ubuntu.Components 1.3
|
|
|
|
import "headers"
|
|
|
|
import "../components"
|
|
|
|
|
|
|
|
Page {
|
|
|
|
header: StackHeader {
|
2019-03-21 10:22:12 +00:00
|
|
|
id: infoHeader
|
2019-03-15 16:53:40 +00:00
|
|
|
title: i18n.tr('Info')
|
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
anchors.top: infoHeader.bottom
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
width: parent.width
|
|
|
|
color: "#FFF"
|
|
|
|
|
|
|
|
Flow {
|
|
|
|
spacing: 2
|
|
|
|
anchors.fill: parent
|
|
|
|
Rectangle {
|
2019-03-21 10:22:12 +00:00
|
|
|
width: parent.width
|
|
|
|
height: units.gu(4)
|
2019-03-15 16:53:40 +00:00
|
|
|
}
|
|
|
|
Rectangle {
|
2019-03-21 10:22:12 +00:00
|
|
|
width: parent.width
|
|
|
|
height: units.gu(12)
|
|
|
|
Image {
|
|
|
|
source: "../../assets/logo.svg"
|
|
|
|
width: units.gu(12)
|
|
|
|
height: units.gu(12)
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2019-03-15 16:53:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Rectangle {
|
2019-03-21 10:22:12 +00:00
|
|
|
width: parent.width
|
|
|
|
height: units.gu(4)
|
2019-03-15 16:53:40 +00:00
|
|
|
}
|
|
|
|
Text {
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
width: parent.width
|
|
|
|
height: units.gu(6)
|
|
|
|
text: i18n.tr('UTPass')
|
|
|
|
}
|
|
|
|
Text {
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
width: parent.width
|
|
|
|
height: units.gu(6)
|
|
|
|
text: "Version" //i18n.tr("Version %1").arg(Manifest.get("version"))
|
|
|
|
}
|
|
|
|
Link {
|
|
|
|
url: "https://github.com/QRouland/UTPass/issues"
|
2019-03-16 08:02:12 +00:00
|
|
|
text: i18n.tr('Suggest improvement(s) or report a bug(s)')
|
2019-03-15 16:53:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|