Angular Material Tabs Example | Angular Tabs Example

By Hardik Savani October 20, 2023 Category : Angular

Hi Dev,

This tutorial will provide example of angular material tabs example. step by step explain material angular tabs example. if you want to see example of angular tabs example then you are a right place. if you want to see example of angular mat-tab example then you are a right place.

I will show you how to use material tabs in angular 6, angular 7, angular 8, angular 9, angular 10, angular 11, angular 12, angular 13, angular 14, angular 15, angular 16 and angular 17. 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 - ItSolutionStuff.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...

Shares