Your gif and all suggestion is coming from the keyboard app there is some way to disable it, like if we apply password container textformfiled then it is possible like below :
Another way is you have to make custom keyboard for it
TextFormField(
keyboardType: TextInputType.visiblePassword, // add this line
controller: textEditingController,
cursorColor: AppTheme.secondaryColor,
6
Answers
make the enableInteractiveSelection property to false of the TextField
you can read the details in the official documentation here
Try setting the
KeyboardType
to accept only text in theTextField
:You can use the bellow property for
TextField
andTextFormField
to stop the keyboard suggesion.
Have a look at this and see if this workaround helps in your usecase.
hide gif/sticker in keyboard
This is usually normal keyboard behaviour to have those options not that it would work even if users tapped on it.
If you wish, you can code a custom keyboard without distractions by following add custom keyboard
You can disable the option to insert images into a TextField in Flutter by creating a custom
and overwriting the
method to return a plain TextField.
create this
and use it like this
Your gif and all suggestion is coming from the keyboard app there is some way to disable it, like if we apply password container textformfiled then it is possible like below :
Another way is you have to make custom keyboard for it