2022-06-03 11:26:02 +00:00
|
|
|
// Copyright (C) 2018 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2018-08-03 12:21:05 +00:00
|
|
|
|
2020-12-01 12:57:32 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Controls.Material
|
2018-08-03 12:21:05 +00:00
|
|
|
|
|
|
|
Text {
|
2024-09-19 14:28:28 +00:00
|
|
|
required property int modelData
|
2025-07-01 13:49:37 +00:00
|
|
|
required property int index
|
2018-08-03 12:21:05 +00:00
|
|
|
text: modelData
|
|
|
|
color: Tumbler.tumbler.Material.foreground
|
|
|
|
font: Tumbler.tumbler.font
|
|
|
|
opacity: 1.0 - Math.abs(Tumbler.displacement) / (Tumbler.tumbler.visibleItemCount / 2)
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
}
|