必须在Flutter中写'new'关键字吗?

问题描述 投票:0回答:1

在下面的代码中,必须编写new关键字吗??例如。 new Containernew Rownew Textnew CircleAvatar

return new Container(
  child: new Row(
    children: <Widget>[
      new Container(
        child: new CircleAvatar(
          child: new Text(_name[0]),
        ),
      ),
      new Column(
        children: <Widget>[
          new Text("Text Here"),
          new Container(
            child: new Text(text),
          )
        ],
      )
    ],
  ),
);
flutter dart keyword
1个回答
0
投票

不,不是......................................

© www.soinside.com 2019 - 2024. All rights reserved.