2020-02-12 15:08:18 +01:00
|
|
|
import calamares.ui 1.0
|
2019-12-14 18:14:35 +01:00
|
|
|
|
|
|
|
import QtQuick 2.10
|
|
|
|
import QtQuick.Controls 2.10
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import org.kde.kirigami 2.7 as Kirigami
|
|
|
|
import QtGraphicalEffects 1.0
|
|
|
|
import QtQuick.Window 2.3
|
|
|
|
|
2020-02-12 15:08:18 +01:00
|
|
|
Page
|
2019-12-14 18:14:35 +01:00
|
|
|
{
|
2020-02-12 15:08:18 +01:00
|
|
|
id: welcome
|
2019-12-14 18:14:35 +01:00
|
|
|
|
|
|
|
header: Item
|
|
|
|
{
|
|
|
|
width: parent.width
|
|
|
|
height: 150
|
|
|
|
|
|
|
|
Image
|
|
|
|
{
|
|
|
|
anchors.centerIn: parent
|
|
|
|
source: Branding.imagePath(Branding.ProductWelcome)
|
|
|
|
height: Math.min(100, parent.height)
|
|
|
|
width: height
|
|
|
|
sourceSize.width: width
|
|
|
|
sourceSize.height: height
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|