-
Notifications
You must be signed in to change notification settings - Fork 276
Feature request - Stackable Toast messages #37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
@gertvdkolk Hi, glad you like it :) The behavior I wanted to achieve was "hide the toast, then make it visible again with the new message". I wasn't really part of the plan to have stackable toast views, so from this point of view, it works as intended. If you want to pick it up, we can discuss about developing this additional presentation mechanism. |
Yeah this would be great! |
I've already fixed it! |
Any news about this one? :D |
To show another toast I do this Toast.hide();
setTimeout(() => {
Toast.show({
text1: "Error",
text2: this.text,
type: "error",
position: "bottom",
});
}, 400); |
Hi!
First of all, thank you for making this component. It's very convenient.
I just installed it and it works great out of the box.
What I noticed is that whenever I fire a second toast message, it reuses the original toast message. Is this correct?
Can this perhaps made to be so that multiple messages can be shown?
For example, like in this codepen: https://codepen.io/osublake/pen/YyLZKV
Thank you!
The text was updated successfully, but these errors were encountered: