How to create multiple item pickers in ionic?

I want to create an item picker that can contain multiple columns as in the picture below.

image

Unfortunately, I couldn’t find any document or tutorial on how to achieve this.
Here is my current workaround code, but this is not exactly what I want.

<select>
    <option>1</option>
    <option>2</option>
</select>
<select>
    <option>Green</option>
    <option>Blue</option>
</select>
<select>
    <option>Red</option>
    <option>Orange</option>
</select>

Is there any way I can create an item picker as shown in the picture?

Do you find a good way?