2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
2024-02-22 14:51:16 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2016-10-18 16:45:49 +00:00
|
|
|
|
2018-06-25 16:12:29 +00:00
|
|
|
import QtQuick 2.12
|
2016-10-18 16:45:49 +00:00
|
|
|
|
|
|
|
SequentialAnimation {
|
|
|
|
id: tapFlash
|
|
|
|
running: false
|
|
|
|
PropertyAction { value: false }
|
|
|
|
PauseAnimation { duration: 100 }
|
|
|
|
PropertyAction { value: true }
|
|
|
|
PauseAnimation { duration: 100 }
|
|
|
|
PropertyAction { value: false }
|
|
|
|
PauseAnimation { duration: 100 }
|
|
|
|
PropertyAction { value: true }
|
|
|
|
PauseAnimation { duration: 100 }
|
|
|
|
PropertyAction { value: false }
|
|
|
|
PauseAnimation { duration: 100 }
|
|
|
|
PropertyAction { value: true }
|
|
|
|
}
|