Open In App

Angular ng Bootstrap Toast Component

Angular ng bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites.
In this article, we will see how to use Toast in angular ng bootstrap. The Toast component is used to make a component that will provide feedback messages to the user.

Installation syntax:



ng add @ng-bootstrap/ng-bootstrap

Approach:

 

Example 1: In this example, we are making a basic example of toast.




<ngb-toast [autohide]="false" id='gfg'>
    GeeksforGeeks Angular ng bootstrap
</ngb-toast>




import { NgModule } from '@angular/core';
  
// Importing forms module
import { FormsModule, ReactiveFormsModule  } 
from '@angular/forms';
import { BrowserModule } 
from '@angular/platform-browser';
import { BrowserAnimationsModule }
from '@angular/platform-browser/animations';
  
import { AppComponent }   from './app.component';
import { NgbModule }
from '@ng-bootstrap/ng-bootstrap';
   
@NgModule({
  bootstrap: [
    AppComponent
  ],
  declarations: [
    AppComponent
  ],
  imports: [
    FormsModule,
    BrowserModule,
    BrowserAnimationsModule,
    ReactiveFormsModule,
    NgbModule
  ]
})
export class AppModule { }




#gfg {
    margin:40px
}

Output:

Example 2: In this example, we are making a toast with header.




<ngb-toast [autohide]="false" id='gfg' header='GeeksforGeeks'>
    Angular ng bootstrap
</ngb-toast>




import { NgModule } from '@angular/core';
  
// Importing forms module
import { FormsModule, ReactiveFormsModule  }
from '@angular/forms';
import { BrowserModule } 
from '@angular/platform-browser';
import { BrowserAnimationsModule }
from '@angular/platform-browser/animations';
  
import { AppComponent }   from './app.component';
import { NgbModule }
from '@ng-bootstrap/ng-bootstrap';
   
@NgModule({
  bootstrap: [
    AppComponent
  ],
  declarations: [
    AppComponent
  ],
  imports: [
    FormsModule,
    BrowserModule,
    BrowserAnimationsModule,
    ReactiveFormsModule,
    NgbModule
  ]
})
export class AppModule { }




#gfg {
    margin:40px
}

Output:

Reference: https://ng-bootstrap.github.io/#/components/toast/overview


Article Tags :