mirror of
https://github.com/celesrenata/end-4-flakes.git
synced 2026-06-06 10:49:26 -05:00
27 lines
714 B
QML
27 lines
714 B
QML
import qs.modules.common
|
|
import qs.modules.common.widgets
|
|
import qs.services
|
|
import QtQuick
|
|
|
|
GroupButton {
|
|
id: button
|
|
property string buttonIcon
|
|
property bool activated: false
|
|
toggled: activated
|
|
|
|
baseWidth: height
|
|
|
|
contentItem: MaterialSymbol {
|
|
horizontalAlignment: Text.AlignHCenter
|
|
iconSize: Appearance.font.pixelSize.larger
|
|
text: buttonIcon
|
|
color: button.activated ? Appearance.m3colors.m3onPrimary :
|
|
button.enabled ? Appearance.m3colors.m3onSurface :
|
|
Appearance.colors.colOnLayer1Inactive
|
|
|
|
Behavior on color {
|
|
animation: Appearance.animation.elementMoveFast.colorAnimation.createObject(this)
|
|
}
|
|
}
|
|
}
|