Date Range Picker In Angular 10

Previously if you need to select a start date and end date in date picker, this is not possible in one date picker. so we create two different date-picker one for the start date and the other for end date Rage Date Picker required two dates Start Date and End date. If you want to select two Dates in the Date picker then angular 10 Release Range Date Picker where you can select start date as well as end date in the same date-picker. You can use the mat-date-range-input and mat-date-range-picker components. they work similarly to the mat-date picker and basic date Picker. The mat-date-range-input component requires two input elements for the Start Date and the end date. you need the below libs for the Range date picker : 1. Angular material (ng add @angular/material) 2.moment (npm install moment -- save) 3.material-moment-adapter (npm install @angular/material-moment-adapter) Syntax : <mat-date-range-input> <input matStartDate placeholder="Start Date"></i...