forked from ghostfox/qyouradio
59 lines
886 B
QML
59 lines
886 B
QML
|
|
import QtQuick 6.8
|
||
|
|
import QtQuick.Controls 6.8
|
||
|
|
import QtQuick.Layouts 6.8
|
||
|
|
|
||
|
|
import QYRComponents 1.0
|
||
|
|
|
||
|
|
ColumnLayout {
|
||
|
|
Label {
|
||
|
|
heading: "h2"
|
||
|
|
text: "About"
|
||
|
|
font.bold: true
|
||
|
|
}
|
||
|
|
|
||
|
|
Label {
|
||
|
|
heading: "h3"
|
||
|
|
text: "Youpiter"
|
||
|
|
font.bold: true
|
||
|
|
}
|
||
|
|
|
||
|
|
Label {
|
||
|
|
heading: "h4"
|
||
|
|
text: "Creator of YouVideo"
|
||
|
|
font.bold: true
|
||
|
|
}
|
||
|
|
|
||
|
|
Label {
|
||
|
|
heading: "h3"
|
||
|
|
text: "Ghostfox"
|
||
|
|
}
|
||
|
|
|
||
|
|
Label {
|
||
|
|
heading: "h4"
|
||
|
|
text: "Creator of QYouRadio"
|
||
|
|
}
|
||
|
|
|
||
|
|
Label {
|
||
|
|
heading: "h3"
|
||
|
|
text: "Ghostfox"
|
||
|
|
}
|
||
|
|
|
||
|
|
Label {
|
||
|
|
heading: "h4"
|
||
|
|
text: "Creator of QYouVideo"
|
||
|
|
}
|
||
|
|
|
||
|
|
Label {
|
||
|
|
heading: "h3"
|
||
|
|
text: "Qt Group"
|
||
|
|
}
|
||
|
|
|
||
|
|
Label {
|
||
|
|
heading: "h4"
|
||
|
|
text: "Creator of Qt, QML and QtQuick"
|
||
|
|
}
|
||
|
|
|
||
|
|
Item {
|
||
|
|
Layout.fillHeight: true
|
||
|
|
}
|
||
|
|
}
|