mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-04-26 01:34:40 +00:00
30 lines
600 B
QML
30 lines
600 B
QML
import QtQuick 2.9
|
|
import QtQuick.Controls.Material 2.0
|
|
import QtQuick.Controls 2.3
|
|
import QtQuick.Layouts 1.3
|
|
|
|
Page {
|
|
|
|
signal close();
|
|
|
|
title: "Page"
|
|
header: Rectangle {
|
|
height: parent.height * 0.1
|
|
color: "#cccccc"
|
|
Label {
|
|
id: title
|
|
text: qsTr("About")
|
|
font.pointSize: 13
|
|
wrapMode: Text.WordWrap
|
|
verticalAlignment: Text.AlignVCenter
|
|
horizontalAlignment: Text.AlignHCenter
|
|
anchors.fill: parent;
|
|
anchors.margins: 5
|
|
}
|
|
}
|
|
|
|
contentItem: AboutPage{
|
|
}
|
|
|
|
}
|