We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi Thx for this nice simple library In the case of "Queued Notifications" the order is inverted:
const show = notify.createShowQueue(); // ... console.log(show(operation.title + '1')); console.log(show(operation.title + '2')); console.log(show(operation.title + '3')); console.log(show(operation.title + '4'));
This will show toasts in this order: 1- "My operation1" 2- "My operation4" 3- "My operation3" 4- "My operation2"
Also a few notes I have:
show
createShowQueue
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi
Thx for this nice simple library
In the case of "Queued Notifications" the order is inverted:
This will show toasts in this order:
1- "My operation1"
2- "My operation4"
3- "My operation3"
4- "My operation2"
Also a few notes I have:
show
method is not documentedcreateShowQueue
maybe?)The text was updated successfully, but these errors were encountered: