overte-HifiExperiments/launchers/qt/resources/qml/SplashScreen.qml
2019-09-13 15:04:28 -07:00

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");
}
}