Answers for "ionic dropdown selected value"

3

ion-select cancel text

<ion-select cancel-text="Cancelar">
	<ion-select-option *ngFor="let country of countries" value="{{ country.name }}">
		{{ country.name }}
	</ion-select-option>
</ion-select>
Posted by: Guest on December-09-2020
2

ion select

<ion-select >
          <ion-select-option *ngFor="let country of countries" value="{{ country.name }}">
            {{ country.name }}
          </ion-select-option>
     </ion-select>
Posted by: Guest on September-07-2020

Code answers related to "ionic dropdown selected value"

Browse Popular Code Answers by Language