i am using angular2-toaster in my angular app
it is very simple,
you define toaster container in the template of component
<toaster-container></toaster-container>
and you use toasterService of type ToasterService
to pop op toaster
this.toasterService.pop('success', 'Args Title', 'Args Body');
but there is a problem with this approach, I would not like to define a container in every component I intend to pop a toaster, I would like to define it once in root component. where application bootstrap but when I do so, I get the error
No Toaster Containers have been initialized to receive toasts.
any solution?
ToasterService
in your root component, too! But not in all the sub components! :) – Snowber