import qs import qs.modules.common import qs.modules.common.widgets import qs.services import QtQuick import Quickshell AndroidQuickToggleButton { id: root name: Translation.tr("Notifications") statusText: toggled ? Translation.tr("Show") : Translation.tr("Silent") toggled: !Notifications.silent buttonIcon: toggled ? "notifications_active" : "notifications_paused" mainAction: () => { Notifications.silent = !Notifications.silent; } StyledToolTip { text: Translation.tr("Show notifications") } }