/
erhoof
/
telegraf
Обзор
Документация
Войти
/
erhoof
/
telegraf
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
qml/components/generic/TextWithRoundBackground.qml
31 строка
861 B
mbarashkov
Более красивый красный значок сердечка
10 сен 2025, 20:04
10 сен 2025, 20:04
51a5aad
Код
Авторство
О чём код?
import QtQuick 2.6 import Sailfish.Silica 1.0 import Aurora.Controls 1.0 Item { property alias text: textView.text property alias backgroundColor: background.color property alias pixelSize: textView.font.pixelSize property alias bold: textView.font.bold property alias textColor: textView.color property bool forceSquare property real backgroundHeight: Theme.fontSizeLarge width: background.width height: background.height Rectangle { id: background width: forceSquare ? backgroundHeight : Math.max(height, textView.width + textView.font.pixelSize) height: backgroundHeight anchors.right: parent.right anchors.bottom: parent.bottom radius: height / 2 } Text { id: textView color: Theme.primaryColor anchors.centerIn: background } }