Angular 11 Material Datepicker Example
Hi All,
This example is focused on angular 11 material datepicker. let’s discuss about angular 11 material datepicker format. you will learn material datepicker angular 11. We will use how to use material datepicker in angular 11. you will do the following things for how to use datepicker in angular 11 material.
Datepicker is a primary requirement of project. we almost require to use datepicker in angular app. angular provide material design and they provide how to use datepicker in angular application. i will show you here step by step how you can use material datepicker in angular.
In this example, we will add material design theme and then import some dependency module of datepicker. then we will simply write code of datepicker from angular document.
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: Import Module
In third step, we need to import some dependency like MatDatepickerModule, MatNativeDateModule, MatInputModule. 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 { MatDatepickerModule } from '@angular/material/datepicker';
import { MatNativeDateModule } from '@angular/material/core';
import { MatFormFieldModule } from '@angular/material/form-field';
import { MatInputModule } from '@angular/material/input';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
MatDatepickerModule,
MatNativeDateModule,
MatFormFieldModule,
MatInputModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Step 4: Use Datepicker
Now in view file, we will write code of input element with datepicker as like bellow:
src/app/app.component.html
<h1>Angular Material Datepicker Example - ItSolutionStuff.Com</h1>
<mat-form-field>
<input matInput [matDatepicker]="picker" placeholder="Choose a date">
<mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
<mat-datepicker #picker ></mat-datepicker>
</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
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Create Routing Module in Angular 11?
- Angular 11 Create/Generate QR Code Example
- Angular 11 Template Driven Forms Example
- Angular 11 Multiple Image Upload Tutorial
- Angular 11 CRUD Application Example
- Angular 11 Reactive Forms Validation Example
- Angular Upgrade | How to upgrade from Angular 10 to 11 ?
- Angular 11/10 Google Maps Example Tutorial
- Angular 11/10 Material Clipboard Tutorial
- Angular 11/10 Material Card Example
- Angular 11/10 Select Dropdown Example Tutorial