Skip to content

Commit

Permalink
Disable native keyboard suggestions & autocorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
erdemyerebasmaz committed May 14, 2024
1 parent d252703 commit db97254
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ class RestoreFormPageState extends State<RestoreForm> {
builder: (context, controller, focusNode) {
return TextFormField(
controller: widget.textEditingControllers[itemIndex],
autocorrect: false,
enableSuggestions: false,
enableIMEPersonalizedLearning: false,
keyboardType: TextInputType.text,
textInputAction: TextInputAction.next,
focusNode: focusNodes[itemIndex],
decoration: InputDecoration(
Expand Down

0 comments on commit db97254

Please sign in to comment.