FlutterのFloatingActionButtonでThe named parameter ‘onPressed’ is required,
今回はFlutterのFloatingActionButtonで「The named parameter 'onPressed’ is required, but there’s no corresponding argument. Try adding the required argument.」というエラーが起きたときの対処法についてご紹介いたします。
動作確認したFlutterのバージョンは2.2.3です。
FlutterのFloatingActionButtonでThe named parameter 'onPressed’ is required,
FlutterでFloatingActionButtonを実装したときに表題のエラーが起きました。
1 2 3 4 |
floatingActionButton: FloatingActionButton( child: Text('click'), backgroundColor: Colors.red, ), |
結論を言うと、エラーメッセージの通り、onPressedを追加すれば良いだけです。
中身の処理は空で問題ないです。
1 2 3 4 5 |
floatingActionButton: FloatingActionButton( onPressed: (){}, child: Text('click'), backgroundColor: Colors.red[600], ), |
終わりに
今回はFlutterのFloatingActionButtonで「The named parameter 'onPressed’ is required, but there’s no corresponding argument. Try adding the required argument.」というエラーが起きたときの対処法についてご紹介いたしました。
ディスカッション
コメント一覧
まだ、コメントがありません