ENH - unify phone notifications as popups

Replace the central Konsta notification banner with the shared Sky UI popup across phone and preview surfaces. Add light and dark materials, app icons, timestamps, routed opening, swipe dismissal, and contract coverage.
This commit is contained in:
Leon.Schmidt
2026-08-16 23:32:47 +02:00
parent 102af69e48
commit 49bd7f358f
7 changed files with 292 additions and 52 deletions
+11
View File
@@ -1311,6 +1311,17 @@ onMounted(() => {
if (developmentParameters.has('payphonePreview')) {
openDevelopmentPayphonePreview()
}
if (developmentParameters.has('notificationPreview')) {
window.setTimeout(() => {
notifications.show({
appId: 'messages',
persistent: true,
route: '/apps/messages',
text: 'You still got that spare alternator?',
title: 'Tommy V',
})
}, 250)
}
}
})