List box does not look the same on android/ios

I’d like to display multiple options in the “select”. It shows up fine on desktop, but on android, it only lists the first item.

Above is the desktop look and feel.

And below is how it looks on Android.

The question is “how can I have the android display the same as in desktop?”

If I add style=“height:200px”, it simply displays a large listbox (same look as desktop), but the option is not listed until clicked.

The select component is simply meant for single options. For multiple select option, you would need a different UI-paradigm. Check out this post form some time ago, a user was able to create a multi-select widget provided some code for it.

Thanks.

I guess I will use the list with ion-scroll.

Thanks.