4
1
mirror of https://github.com/QuasarApp/Snake.git synced 2025-05-04 05:29:45 +00:00

30 lines
600 B
QML
Raw Normal View History

2018-12-06 22:49:35 +03:00
import QtQuick 2.9
import QtQuick.Controls.Material 2.0
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.3
Page {
2019-01-02 14:19:39 +03:00
signal close();
2018-12-06 22:49:35 +03:00
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{
}
}