ngIf example ionic
Example 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>
Example 2: ngfor ionic example
<ion-select placeholder="Select" [(ngModel)]="selected">
<ion-option *ngFor="let item of strings" [value]="item">{{item}}</ion-option>
</ion-select>`