mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-26 05:55:17 +02:00
28 lines
601 B
QML
28 lines
601 B
QML
import QtQuick 2.3
|
|
import QtQuick.Controls 2.1
|
|
|
|
Item {
|
|
id: root
|
|
anchors.fill: parent
|
|
|
|
Image {
|
|
anchors.centerIn: parent
|
|
width: parent.width
|
|
height: parent.height
|
|
mirror: false
|
|
source: PathUtils.resourcePath("images/hifi_window@2x.png");
|
|
transformOrigin: Item.Center
|
|
rotation: 0
|
|
}
|
|
|
|
Image {
|
|
anchors.centerIn: parent
|
|
width: 240
|
|
height: 180
|
|
source: PathUtils.resourcePath("images/hifi_logo_large@2x.png");
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
root.parent.setBuildInfoState("right");
|
|
}
|
|
}
|