mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-11 08:29:52 +02:00
24 lines
504 B
QML
24 lines
504 B
QML
import QtQuick 2.3
|
|
import QtQuick.Controls 2.1
|
|
|
|
Item {
|
|
anchors.fill: parent
|
|
|
|
|
|
Image {
|
|
anchors.centerIn: parent
|
|
width: parent.width
|
|
height: parent.height
|
|
mirror: true
|
|
source: PathUtils.resourcePath("images/hifi_window@2x.png");
|
|
transformOrigin: Item.Center
|
|
rotation: 0
|
|
}
|
|
|
|
Image {
|
|
anchors.centerIn: parent
|
|
width: 225
|
|
height: 205
|
|
source: PathUtils.resourcePath("images/hifi_logo_large@2x.png");
|
|
}
|
|
}
|