Home > Enterprise >  How to disable popup suggestions from textfield in flutter
How to disable popup suggestions from textfield in flutter

Time:07-16

I tried hard to make it disapper but it is still showing. I used property 'enable suggestion=false' but it didn't help anyway. How to fix this issue?

CodePudding user response:

This is autofillHints property. I think you set this argument to AutofillHints.email check it.. or remove

https://api.flutter.dev/flutter/material/TextField/autofillHints.html

CodePudding user response:

You can add a password keyboard and all suggestions would be hidden

keyboardType: TextInputType.visiblePassword
  • Related