2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2017-11-14 15:56:55 +00:00
|
|
|
|
2021-10-26 18:11:41 +00:00
|
|
|
import QtQuick
|
2017-11-14 15:56:55 +00:00
|
|
|
|
2021-09-06 19:40:18 +00:00
|
|
|
SequentialAnimation {
|
|
|
|
id: tapFlash
|
|
|
|
running: false
|
2023-02-20 08:18:40 +00:00
|
|
|
loops: 3
|
2021-09-06 19:40:18 +00:00
|
|
|
PropertyAction { value: false }
|
|
|
|
PauseAnimation { duration: 100 }
|
|
|
|
PropertyAction { value: true }
|
|
|
|
PauseAnimation { duration: 100 }
|
2017-11-14 15:56:55 +00:00
|
|
|
}
|