Answers for "ionic if condition"

1

ionic ngif else example

<div *ngIf="isValid;then content else other_content">here is ignored</div>    
<ng-template #content>content here...</ng-template>
<ng-template #other_content>other content here...</ng-template>
Posted by: Guest on January-21-2021
0

class if condition ionic

<span class="char-left" [ngClass]="{'char-left-error' : ratingForm.controls.review.length > 0}">
Posted by: Guest on January-26-2021

Browse Popular Code Answers by Language