Flutter小部件(填充)构造函数错误(预期需要1个自变量,但找到0个。)

时间:2018-09-03 12:37:37

标签: flutter padding flutter-layout

今天,我将继续在我的应用程序上工作,但我发现出现了以前没有的错误。 Flutter似乎无法创建padding Widget。

我搜索了任何“;”或“,”我想念,但一切似乎都还不错。如果我去了官方文档并复制粘贴了一个示例,它将无法正常工作。

这个错误会在我的整个项目中发生,我认为有些错误

发生错误的代码

return Padding(
  padding: EdgeInsets.only(bottom: 7.0),
  child: TextField(
    autofocus: true,
    controller: _searchQueryController,
    decoration: new InputDecoration(
      hintText: 'Text over here',
      prefixIcon: new Padding(
        padding: // <<=== error
            const EdgeInsets.symmetric(vertical: 12.0, horizontal: 10.0),
        child: new Icon(Icons.search),
      ),
    ),
  ),
);

错误 预期需要1个自变量,但找到0个。

0 个答案:

没有答案