Re: [SailfishDevel] How to show toast notification?

2020-03-03 Thread Bjoern Bidar
Hey, I don't think toast notifications really fit into sailfish os. A good replacement is a in app notification like when you can't send a message in the messages app or in storeman for bookmark. Here is the qml source how storeman does this: https://github.com/mentaljam/harbour-storeman/blob/ d

Re: [SailfishDevel] How to show toast notification?

2020-03-03 Thread szopin
Whoops, seen it in quickddit and assumed it was silica, but it is actually custom made: https://github.com/accumulator/Quickddit/blob/master/sailfish/qml/InfoBanner.qml If your app is gpl you can just borrow it I guess, seems to work well enough. Regards, szopin On Tuesday, 3 March 2020, Tamas M

Re: [SailfishDevel] How to show toast notification?

2020-03-03 Thread Tamas Miklos
Hi Guys, Thank you for your help and pointers. My confusion was due to the fact that I couldn't place the DockedPanel into the right place after getting lost in the QML's I've got in my app :) AFAIK infoBanner is not supported by SFOS, but I've managed to come up with a similar solution using

Re: [SailfishDevel] How to show toast notification?

2020-03-03 Thread Dylan Van Assche via Devel
I use the `transient` option to briefly show a notification. It's the same type of notification you get when you plug in your phone in a charger for example. https://sailfishos.org/develop/docs/nemo-qml-plugin-notifications/qml-nemo-notifications-notification.html/#isTransient-prop Kind regards,