Materiale angolare 7 - SnackBar

Il <MatSnackBar>, una direttiva angolare, viene utilizzata per mostrare una barra di notifica da mostrare sui dispositivi mobili in alternativa a finestre di dialogo / popup.

In questo capitolo, mostreremo la configurazione richiesta per mostrare uno snack bar utilizzando materiale angolare.

Di seguito è riportato il contenuto del descrittore del modulo modificato app.module.ts.

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

Di seguito è riportato il contenuto del file host HTML modificato app.component.html.

<button mat-button (click)="openSnackBar('Party', 'act')">Show snack-bar</button>

Di seguito è riportato il contenuto del file ts modificato app.component.ts.

import {Component, Injectable} from '@angular/core';
import { MatSnackBar } from "@angular/material";
@Component({
   selector: 'app-root',
   templateUrl: 'app.component.html',
   styleUrls: ['app.component.css']
})
export class AppComponent {
   constructor(public snackBar: MatSnackBar) {}
   openSnackBar(message: string, action: string) {
      this.snackBar.open(message, action, {
         duration: 2000,
      });
   } 
}

Risultato

Verifica il risultato.

Dettagli

  • Qui, abbiamo creato un pulsante utilizzando il pulsante mat sul cui clic mostriamo lo snack bar.