I\'m currently developing a web app using Angular 7. I wanted to include ngx-toastr to send notifications to users but it isn\'t working as expected. When I trigger a toast noth
For Angular - Material or any angular project we SHOULD need to import modules in sequence like this in your app.module.ts:
imports: [ BrowserModule, BrowserAnimationsModule, ToastrModule.forRoot({ timeOut: 3000, positionClass: 'toast-bottom-right', preventDuplicates: true, closeButton: true }) ]