▲ | cosmic_cheese 6 days ago | |||||||||||||||||||||||||
In general I think toasts are a borderline antipattern, particularly those presented as a chance for the user to undo some action that they accidentally triggered (doubling the panic since now the undo has become a time bomb). Just don’t make the consequencial action so easy to trigger in the first place and where relevant (on iOS or desktop) support the standard undo stack. | ||||||||||||||||||||||||||
▲ | const_cast 6 days ago | parent [-] | |||||||||||||||||||||||||
Toasts on large displays are definitely an anti-pattern, they're just too far from where the action that triggered them actually happened. On mobile it's a bit different, because often you don't have the space to put an "undo" button or status text right next to the thing you just did. So you put it at the bottom or something in a toast. Still not good, but more justifiable. Also iOS does not have reliable undo actions. Android does, but on iOS there isn't an equivalent. No back button. Well, maybe a back button but definitely not required and not enforced in any way. | ||||||||||||||||||||||||||
|