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
you need to import
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
and add that under the @NgModule imports
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
@NgModule({
declarations: [
......
],
imports: [
......
BrowserAnimationsModule,
ToastrModule.forRoot({ timeOut: 2000 enableHtml: true }),
],
providers: [
ToastService,
......
],
bootstrap: [AppComponent]
})