LoginSignup
yama_1983
@yama_1983

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

Flutter Webでエンターでの送信が動作しません

    ### 解決したいこと

Flutter Web で作成したテキスト入力欄でエンターでの送信を試みています。

  • Windows上のEdge / Chrome / Firefox
  • iOS上のSafari
    では動作していますが、Android上のChromeでは機能しません。
  • TextField() → onSubmitted
  • TextFormField() → onFieldSubmitted
    どちらも機能しません。

該当するソースコード

TextField(
        textInputAction: TextInputAction.done,
        onSubmitted: (text){
Navigator.push(context, 
MaterialPageRoute(
  builder: (context)  => TestPage())
);          
        },
      ),

自分で試したこと

TextFormField()への書き換え

0

1Answer

This answer has been deleted for violation of our Terms of Service.

Your answer might help someone💌