angular toast message example

Example 1: Toast message angular

import { ToastrService } from 'ngx-toastr';

Example 2: angular toast

npm install ngx-toastr --save

Example 3: Toast message angular

import { Component, OnInit } from '@angular/core';
import { ToastrService } from 'ngx-toastr';

@Component({
  selector: 'app-root',
  templateUrl: './root.component.html',
  styleUrls: ['./root.component.css']
})
export class RootComponent implements OnInit {

  constructor(private toastr: ToastrService) { }

  ngOnInit() {
      
  }
 
  showToaster(){
      this.toastr.success("Hello, I'm the toastr message.")
  }

}

Example 4: Toast message angular

npm install ngx-toastr --save
npm install @angular/animations --save