Last active
March 25, 2020 09:24
-
-
Save santoshyadavdev/7921ee23d0184e2777cde593cfff1cd1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mat-accordion> | |
<mat-expansion-panel> | |
<mat-expansion-panel-header> | |
<mat-panel-title> | |
Personal data | |
</mat-panel-title> | |
<mat-panel-description> | |
Type your name and age | |
</mat-panel-description> | |
</mat-expansion-panel-header> | |
<mat-form-field> | |
<input matInput> | |
</mat-form-field> | |
<mat-form-field> | |
<input matInput type="number" min="1"> | |
</mat-form-field> | |
</mat-expansion-panel> | |
<mat-expansion-panel (opened)="panelOpenState = true" | |
(closed)="panelOpenState = false"> | |
<mat-expansion-panel-header> | |
<mat-panel-title> | |
Self aware panel | |
</mat-panel-title> | |
<mat-panel-description> | |
Currently I am {{panelOpenState ? 'open' : 'closed'}} | |
</mat-panel-description> | |
</mat-expansion-panel-header> | |
<p>I'm visible because I am open</p> | |
</mat-expansion-panel> | |
</mat-accordion> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment