mirror of https://github.com/qt/qt5compat.git
17 lines
404 B
QML
17 lines
404 B
QML
// Copyright (C) 2020 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
import QtQuick
|
|
import Qt5Compat.GraphicalEffects
|
|
|
|
Item {
|
|
ConicalGradient {
|
|
anchors.fill: parent
|
|
angle: 0.0
|
|
gradient: Gradient {
|
|
GradientStop { position: 0.0; color: "white" }
|
|
GradientStop { position: 1.0; color: "black" }
|
|
}
|
|
}
|
|
}
|