pop-up notifications from a widget #4673
Replies: 1 comment
-
Posted at 2022-05-12 by rigrig
Not really, and you probably need to Posted at 2022-05-13 by @gfwilliams There is an actual 'notification' app/library that handles this: https://github.com/espruino/BangleApps/tree/master/apps/notify On Bangle.js 1 it can use the in-LCD buffer to scroll the screen and display the notification, but on Bangle.js 2 the only option is basically what you're doing - display and then reload after (done by Using |
Beta Was this translation helpful? Give feedback.
-
Posted at 2022-05-12 by iii
What's the proper way of showing a pop-up notification from a widget?
So far I updated widbt_notify to use the following code:
The problem I get is that if the watchface calls its
draw()
function while popup is still visible, the popup screen is (partially) overwritten.I checked other widgets:
But it seems there's no other examples.
One solution would be to complement a widget with a tiny app, which is launched only to show a popup. Sounds like an overkill. Is there a better way? If not, is there a way to ship a widget with an app, while hiding the app from the launcher?
Beta Was this translation helpful? Give feedback.
All reactions