Is it possible to make all select dropdowns native for IOS and Android ?
because currently the selection under IOS 13 with materializecss does not work properly.
Cordially
You can add the class browser-default to get the browser default.
https://materializecss.com/select.html
<select class="browser-default">
<option value="" disabled="" selected="">Choose your option</option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
Serving the below patched select.js file after materialize.js is working for most users.
https://github.com/Dogfalo/materialize/blob/v1-dev/js/select.js