4 ms·
Toasts are a great way to lose information. They are a terrible design and should not be used. They distract the user, are not dense with information, and provi
by jmercouris 10mo ago
Toasts are a great way to lose information. They are a terrible design and should not be used. They distract the user, are not dense with information, and provide no value. If a message is important enough for the user to read, it should be a dialog box.
- oulipo2 10mo agoMost of the time they're used for a quick visual confirmation that "your operation went right"
- jmercouris 10mo agoThe information that the user did something "right" should be responsive next to where the user initiated the action- not in a random corner.
- nine_k 10mo agoThat control may not be visible by the time the operation completes.
- thunderfork 10mo agoThere are certainly times where this must be the case, but I think it's broadly better to have designs avoid this.
- strogonoff 10mo agoToasts are popular, but not the only option if you want to notify the user about completion of a longer-running action when the user may have already switched away from where they started it. Consider a status bar[0] instead. You can make it cute and animated, too! [0] https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/status_role https://developer.mozilla.org/en-US/docs/Web/Accessibility/A....
- tyre 10mo agoThat’s why confetti exists
- ahallock 10mo agoDevelopers reach for Toasts because they're zero effort. Good user experience takes a lot of thought and you can skip all that with Toasts haha.
- robin_reala 10mo agoZero effort, and they animate. Components that have animation baked in are drug-like in how they hook in designers and devs who are only thinking about the visual presentation.
- wildrhythms 10mo agoZero effort, and it's basically a crude visualization of a good old message bus :P
- jopicornell 10mo agoDialogs are a great way to lose information. They are often dismissed by users that want to do their job and are interrupted by modals. Users focused on their tasks blindly dismiss dialogs. Read the above as a critique to your strong opinion and not an opinion of mine. My opinion is that toasts are great for notifications that can be reviewed/checked later, like chat notifications or finished background tasks. What should be avoided, just for the same reason as modals/dialogs, is an overuse, causing fatigue.
- mhitza 10mo agoDialogs don't have to be modal, and in the parent comments context they aren't.