ItSolutionStuff.com

Angular Material Phone Number Input Mask Example

By Hardik Savani • May 2, 2024
Angular

Hi,

If you need to see example of angular material phone number input mask. step by step explain angular material input mask phone. you can see angular material phone number input. you will learn phone number input mask angular material. Let's get started with angular ngx mask example.

you can easily add phone number input mast 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 app.

In this example, we will add material design theme and then import some dependency module of input. then we will simply install ngx-mask package for phone number mask.

So, let's see bellow example from here:

Step 1: Create New App

You can easily create your angular app using bellow command:

ng new myDatepicker

Step 2: 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 HammerJS for gesture recognition? Yes

? Set up browser animations for Angular Material? Yes

Step 3: Install ngx-mask

Now in this step, we need to just install ngx-mask in our angular application. so let's add as like bellow:

npm install --save ngx-mask

Step 4: Import Module

In third step, we need to import some dependency like MatInputModule, NgxMaskModule. so let's add.

src/app/app.module.ts

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

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

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

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

import { MatFormFieldModule } from '@angular/material/form-field';

import { MatInputModule } from '@angular/material/input';

import { NgxMaskModule, IConfig } from 'ngx-mask'

@NgModule({

declarations: [

AppComponent

],

imports: [

BrowserModule,

BrowserAnimationsModule,

MatFormFieldModule,

MatInputModule,

NgxMaskModule.forRoot()

],

providers: [],

bootstrap: [AppComponent]

})

export class AppModule { }

Step 5: Update html file

Now in view file, we will write code of input element with datepicker as like bellow:

src/app/app.component.html

<h1>angular material phone number input mask - ItSolutionStuff.Com</h1>

<mat-form-field class="example-full-width">

<mat-label>Phone</mat-label>

<input matInput mask="(000) 000-0000" placeholder="Ex. (000) 000-0000" value="">

</mat-form-field>

Now we are ready to run our example, you can run by following command:

ng serve

you will see layout as bellow:

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Angular Material Datepicker Disable Future Dates Example

Read Now →

Angular 11 Material Datepicker Example

Read Now →

Angular 11/10 Material Card Example

Read Now →

Angular Material Multi Step Form Example

Read Now →

Angular Material Expansion Panel Example | Angular mat-expansion-panel

Read Now →

Angular Material Divider Example | Angular mat-divider

Read Now →

Angular Material Badge Example | Angular matBadge

Read Now →

Angular Material Selected Tab Change Event Example

Read Now →

Angular Material Tooltip Example

Read Now →

Angular Material Mat-Select with Reactive Form Example

Read Now →

Angular Material Datepicker Example

Read Now →