Skip to content

Instantly share code, notes, and snippets.

@thisiszoaib
Created July 9, 2020 11:44
Show Gist options
  • Select an option

  • Save thisiszoaib/c0b72769264733177820e671e7526dcb to your computer and use it in GitHub Desktop.

Select an option

Save thisiszoaib/c0b72769264733177820e671e7526dcb to your computer and use it in GitHub Desktop.
Weather 12
<div class="content">
<div class="flex-row">
<mat-form-field class="mr">
<mat-label>Select country</mat-label>
<mat-select [formControl]="countryControl">
<mat-option *ngFor="let country of countries" [value]="country">
{{country.name}}
</mat-option>
</mat-select>
</mat-form-field>
<mat-form-field>
<mat-label>Select city</mat-label>
<mat-select [formControl]="cityControl">
<mat-option *ngFor="let city of ??" [value]="city">
{{city}}
</mat-option>
</mat-select>
</mat-form-field>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment