0

I have this TextFormField in a Stateful widget

TextFormField(
                    decoration: InputDecoration(labelText: "Image URL"),
                    keyboardType: TextInputType.url,
                    textInputAction: TextInputAction.done,
                  )

The expected behavior is to see a checkmark button (instead of newline button) in my swiftkey keyboard on my Android device; but nothing has changed on the keyboard. I have tried another TextInputActions like Search and Send they appear properly.

user690069
  • 330
  • 4
  • 13

1 Answers1

1

Even flutter is a great platform, there are still some missing points need to be improved. So in your case most probably;

keyboardType is affecting the done button to not show up. So if you simply change your keyboardType to TextInputType.text your keyboard will start showing checkmark icon.

Dharman
  • 30,962
  • 25
  • 85
  • 135
Emin Ayar
  • 1,104
  • 9
  • 13