error NG8002: Can't bind to 'matDatepicker' since it isn't a known property of 'input'
Advertisements I am implementing an application using Angular 15. I use Angular Material there. I need to add a date picker and after inserting the code snippet below I’m getting an error. <mat-form-field appearance="outline"> <mat-label>Choose a date</mat-label> <input formControlName="freshness" matInput [matDatepicker]="picker"> <mat-datepicker-toggle matIconSuffix [for]="picker"></mat-datepicker-toggle> <mat-datepicker #picker></mat-datepicker> </mat-form-field> Error: Error: src/app/dialog/dialog.component.html:18:51 – error NG8002: Can’t bind… Read More error NG8002: Can't bind to 'matDatepicker' since it isn't a known property of 'input'