I'm trying to hide one of the option tags by using hidden attribute. https://www.w3schools.com/tags/att_global_hidden.asp
<select>
<option disabled hidden>Hidden</option>
<option>Option1</option>
<option>Option2</option>
</select>
However, it seems it does not work if the iPhone picker component. I believe this is because of the iPhone picker component.
If it's true, how can I hide it?
(Note pics are BrowserStack emulator)