aboutsummaryrefslogtreecommitdiffstats
path: root/MomiBar.qml
blob: d67ceea84013d9201cbd8f0137194cb3b6b10b57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// SPDX-License-Identifier: GPL-3.0+
// Copyright (C) 2024 Automotive Grade Linux
import QtQuick
import QtQuick.Effects

Item {
    id: momiBar
    visible: true

    Image {
        id: logoAGL
        width: 200
        height: 125
        fillMode: Image.PreserveAspectFit
        source: "images/14_Logo.png"
    }
    MultiEffect {
        source: logoAGL
        anchors.fill: logoAGL
        brightness: 0.4
        saturation: 0.2
        shadowEnabled: true
        shadowOpacity: 1.0
        shadowBlur: 0.5
        shadowHorizontalOffset: 4.0
        shadowVerticalOffset: 4.0
    }
}