This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-app/mea/ui/AboutPage.qml
2018-06-04 18:14:59 +02:00

46 lines
1019 B
QML

import QtQuick 2.5
import QtQuick.Controls 2.1
import QtQuick.Controls.Material 2.1
import QtQuick.Layouts 1.1
import Mea 1.0
import "components"
Page {
id: root
header: GuhHeader {
text: qsTr("About %1").arg(app.systemName)
backButtonVisible: true
onBackPressed: pageStack.pop()
}
GridLayout {
anchors { left: parent.left; right: parent.right; top: parent.top; margins: app.margins }
rowSpacing: app.margins
columns: 2
Image {
Layout.preferredHeight: app.iconSize * 5
Layout.columnSpan: 2
Layout.fillWidth: true
fillMode: Image.PreserveAspectFit
horizontalAlignment: Image.AlignHCenter
source: "../guh-logo.svg"
}
Label {
text: qsTr("App version:")
}
Label {
text: appVersion
}
Label {
text: qsTr("Qt version:")
}
Label {
text: qtVersion
}
}
}