jaumard / sms_autofill

Flutter plugin to provide SMS code autofill support
MIT License
289 stars 184 forks source link

iOS auto fill works on app but not works on web #159

Open amir14a opened 2 years ago

amir14a commented 2 years ago

Hi

Note: I try test it in a simple html page and the result is:

<form action="">
        <input name="one-time-code" id="one-time-code" type="text" autocomplete="one-time-code" autocorrect="off">
        //this not works
        <br>
        <input name="one-time-code" id="one-time-code" type="tel" autocomplete="one-time-code" autocorrect="off">
        //this works
</form>

I need type="tel" in the html input

bug