Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
557 views
in Technique[技术] by (71.8m points)

dart - Defining named parameter in Flutter

I am trying to create a To Do List app and I have an error with creating a Floating Action Button There is one error message saying "The named parameter floatingActionButton is not defined" My current code surrounding the problem is:

class _NewTaskState extends State<NewTask> {
  @override
  Widget build(BuildContext context) {
    return  new Scaffold(
        body: new Container(
            child: new Column(
                children: <Widget>[
                  TaskDesc.length == 0 ? dynamicTextField : result,
                  Task.length == 0 ? submitButton : new Container(),
                ]
            ),
            floatingActionButton: FloatingActionButton(
                onPressed: addDynamic,
                child:new Icon(Icons.add)
            )
        )
    );
  }
}
question from:https://stackoverflow.com/questions/65947402/defining-named-parameter-in-flutter

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

floatingActionButton should be wrapped inside the scaffold not container! You could change it this way:

class _NewTaskState extends State<NewTask> {
          @override
          Widget build(BuildContext context) {
            return  new Scaffold(
                body: new Container(
                    child: new Column(
                        children: <Widget>[
                          TaskDesc.length == 0 ? dynamicTextField : result,
                          Task.length == 0 ? submitButton : new Container(),
                        ]
                    ),
                   ),
                    floatingActionButton: FloatingActionButton(
                        onPressed: addDynamic,
                        child:new Icon(Icons.add)
                    ),
            );
          }
        }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...