1

How I can add image to ion-option in ion-select? I wanna use it for select language with country icon

   <ion-select interface="popover" [interfaceOptions]="opts"
                        slot="end">
                <ion-select-option 
                    *ngFor="let item of (langs$ | async)" 
                    [value]="item.name" class="lang-item">
                    {{item.name}}
                </ion-select-option>
            </ion-select>


// .ts


    opts: any = {
        cssClass: 'lang'
    };
Serj Malko
  • 326
  • 4
  • 15
  • Does this answer your question? [How to use images inside a select component in Ionic 2](https://stackoverflow.com/questions/37694564/how-to-use-images-inside-a-select-component-in-ionic-2) – Najam Us Saqib Sep 16 '20 at 15:27
  • I saw it, but it look terrible. And now Ionic 5. – Serj Malko Sep 17 '20 at 07:58

0 Answers0