Angular 9 Material Tabs Example

May 7, 2020 | Category : Angular

Hi Dev,

In this tutorial we will go over the demonstration of angular mat-tab example. We will look at example of angular material mat-tab example. In this article, we will implement a tabs angular material design example. you will learn angular material design tab example. Here, Creating a basic example of angular material tabs example.

I will show you how to use material tabs in angular 6, angular 7, angular 8 and angular 9. i will give you very basci example of angular material design tab so you can use in your application.

So, let's see simple example

You can see bellow layout for demo:

Create New App

If you are doing example from scratch then You can easily create your angular app using bellow command:

ng new app-material

Add Material Design

Now in this step, we need to just install material design theme in our angular application. so let's add as like bellow:

ng add @angular/material

Cmd like bellow:

Installing packages for tooling via npm.

Installed packages for tooling via npm.

? Choose a prebuilt theme name, or "custom" for a custom theme: Indigo/Pink

[ Preview: https://material.angular.io?theme=indigo-pink ]

? Set up global Angular Material typography styles? Yes

? Set up browser animations for Angular Material? Yes

Basic Material Slider Toggle Button

Here, we will create very simple example. first we need to import MatTabsModule, and BrowserAnimationsModule for this example.

so let's update app.module.ts, app.component.ts and app.component.html.

Let's follow step:

src/app/app.module.ts

import { NgModule } from '@angular/core';

import { BrowserModule } from '@angular/platform-browser';

import { FormsModule } from '@angular/forms';

import { AppComponent } from './app.component';

import {MatTabsModule} from '@angular/material/tabs';

import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

@NgModule({

imports: [ BrowserModule, FormsModule, MatTabsModule, BrowserAnimationsModule ],

declarations: [ AppComponent],

bootstrap: [ AppComponent ]

})

export class AppModule { }

src/app/app.component.html

<h1>Angular Material Tabs Example - HDTuto.com</h1>

<mat-tab-group>

<mat-tab label="Basic Setting">

<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod

tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,

quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo

consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse

cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non

proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>

</mat-tab>

<mat-tab label="SMS Setting">

<p>This is SMS Setting</p>

</mat-tab>

<mat-tab label="Email Setting">

<p>This is Email Setting</p>

</mat-tab>

</mat-tab-group>

You can easily run by following command:

ng serve

I hope it can help you...