Winkelmaterial 7 - SnackBar
Das <MatSnackBar>, eine Winkelrichtlinie, wird verwendet, um eine Benachrichtigungsleiste anzuzeigen, die auf mobilen Geräten als Alternative zu Dialogen / Popups angezeigt wird.
In diesem Kapitel zeigen wir die Konfiguration, die erforderlich ist, um eine Snackbar mit Angular Material anzuzeigen.
Es folgt der Inhalt des modifizierten Moduldeskriptors 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 { }
Es folgt der Inhalt der geänderten HTML-Hostdatei app.component.html.
<button mat-button (click)="openSnackBar('Party', 'act')">Show snack-bar</button>
Es folgt der Inhalt der geänderten ts-Datei 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,
});
}
}
Ergebnis
Überprüfen Sie das Ergebnis.
Einzelheiten
- Hier haben wir mit mat-button einen Button erstellt, auf dessen Klick die Snackbar angezeigt wird.