2023-02-22 01:48:49 +03:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2021-03-07 07:57:56 +03:00
|
|
|
//
|
2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2024-06-24 04:08:22 +03:00
|
|
|
import QtQuick 2.15
|
|
|
|
import im.nheko 1.0
|
2021-01-12 01:50:26 +03:00
|
|
|
|
|
|
|
Item {
|
2024-06-24 04:08:22 +03:00
|
|
|
id: wrapper
|
|
|
|
property color color
|
2021-01-12 01:50:26 +03:00
|
|
|
|
2024-06-24 04:08:22 +03:00
|
|
|
Loader {
|
|
|
|
Component {
|
|
|
|
id: ripple
|
|
|
|
RippleImpl { color: color; parent: wrapper.parent; }
|
2021-01-12 01:50:26 +03:00
|
|
|
}
|
2024-06-24 04:08:22 +03:00
|
|
|
sourceComponent: !Settings.reducedMotion ? ripple : undefined
|
2021-01-12 01:50:26 +03:00
|
|
|
}
|
|
|
|
}
|