Warning, /plasma/plasma-mobile/look-and-feel/contents/lockscreen/WallpaperBlur.qml is written in an unsupported language. File is not indexed.

0001 /*
0002  * SPDX-FileCopyrightText: 2021-2022 Devin Lin <devin@kde.org>
0003  * SPDX-License-Identifier: GPL-2.0-or-later
0004  */
0005 
0006 import QtQuick 2.12
0007 import QtGraphicalEffects 1.12
0008 
0009 FastBlur {
0010     id: fastBlur
0011     cached: true
0012     radius: 50
0013     
0014     property bool blur
0015     opacity: blur ? 1 : 0
0016     
0017     Behavior on opacity {
0018         NumberAnimation {
0019             duration: 1000
0020             easing.type: Easing.InOutQuad
0021         }
0022     }
0023 }