Hi,
I am new with Ionic and i want to import this angular app in ionic with ion-select component… Can somebody help me?
Thank you
Hi,
I am new with Ionic and i want to import this angular app in ionic with ion-select component… Can somebody help me?
Thank you
As you can use Ionic + Angular you can basically use the same code.
Just change to use ion-select.
Example:
<ion-select [(ngModel)]="filtersToDisplay" (ionChange)="change($event)">
<ion-select-option *ngFor="let filters of filtersToDisplay" [ngValue]="filter">{{filters.manufacturer}}</ion-select-option>
</ion-select>
thank you. Unfortunately app not working. How Can I fix it?