I Want To Validate My Mat-Stepper-Next Function in App Component Through Child Component Validators,
I've 3 Different Forms Components & Every Component Has There Own FormGroup, Validations & Next Button in The Component
I'm Calling That Child Components in My Parent Component & My Mat-Stepper is Present in The Parent Component
So Help Me That How To Call The Validations of Child Components in The MatStepper Next Function? Child Components Has Next Button in It
Like If Form is In-Complete or Has Errors Then It Won't Let Us To Jump into Next Form
Parent Component
----------------------------------------------
<mat-horizontal-stepper>
<mat-step label="Form-1">
<app-form1></app-form1>
</mat-step>
<mat-step label="Form-2">
<app-form2></app-form2>
</mat-step>
<mat-step label="Form-3">
<app-form3></app-form3>
</mat-step>
</mat-horizontal-stepper>