/
erhoof
/
telegraf
Обзор
Документация
Войти
/
erhoof
/
telegraf
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
qml/components/ReactionButton.qml
19 строк
387 B
Slava Monich
Make the reaction button configurable
07 дек 2023, 03:54
07 дек 2023, 03:54
f241703
Код
Авторство
О чём код?
import QtQuick 2.0 import Sailfish.Silica 1.0 Rectangle { id: button height: Theme.itemSizeExtraSmall width: Theme.itemSizeExtraSmall color: Theme.rgba(Theme.primaryColor, 0.4) radius: width / 2 signal clicked() IconButton { icon.source: "image://theme/icon-s-favorite" anchors.centerIn: parent onClicked: button.clicked() } }