我非常熟悉Flutter(就像一个星期一样)。我正在尝试在列表视图上方添加搜索字段。听起来很简单。但是我收到一个对我来说没有意义的错误(即使经过大量的谷歌搜索和阅读文档)。我理解错误,但不是我为什么得到它。
return Scaffold(
body :
Padding(
padding: EdgeInsets.all(3.0),
child:
TextField(
controller: searchController,
decoration: InputDecoration(
icon: Icon(Icons.search),
hintText: "search text",
border: OutlineInputBorder()
), //decoration
), //textfield
), // padding
ListView.builder(
itemCount : contactsModel.entityList.length,
itemBuilder : (BuildContext inBuildContext, int inIndex) {
Contact contact = contactsModel.entityList[inIndex];
return Column(
children : [
Slidable(
delegate : SlidableDrawerDelegate(),
actionExtentRatio : .25,
child : ListTile(
title : Text("${contact.password}"),
subtitle : contact.pwordHint == null ? null : Text("${contact.pwordHint} - ${contact.notes}"),
// Edit existing contact.
onTap : () async {
contactsModel.entityBeingEdited = await ContactsDBWorker.db.get(contact.id);
contactsModel.setStackIndex(1);
}
),
secondaryActions : [
IconSlideAction(
caption : "Delete",
color : Colors.red,
icon : Icons.delete,
onTap : () => _deleteContact(inContext, contact)
)
]
),
Divider()
]
); /* End Column. */
} /* End itemBuilder. */
), /* End ListView.builder. */
floatingActionButton : FloatingActionButton(
child : Icon(Icons.add, color : Colors.white),
onPressed : () async {
contactsModel.entityBeingEdited = Contact();
contactsModel.setStackIndex(1);
}
),
); /* End Scaffold. */
我得到的错误是:
error: Too many positional arguments: 0 expected, but 1 found. (extra_positional_arguments_could_be_named at SCAFFOLD LINE
error: Positional arguments must occur before named arguments. (positional_after_named_argument at LISTVIEW.BUILDER LINE
如果我删除“ BODY:”之后的PADDING()部分,则没有错误。
我不确定为什么Listview与Padding不同。我想我遗漏了一个或多个使答案显而易见的基本概念。任何指导将不胜感激。
答案 0 :(得分:1)
那是因为您正在使用
Scaffold(
body: Widget1(),
Widget2(),
...
)
Widget1
是您的Padding
,Widget2
是ListView.builder
这不是正确的方法。您可以将Widget1
和Widget2
包装在Stack
或Column
中,以适合您的需要,如下所示:
Scaffold(
body: Column(
children: <Widget>[
Widget1(),
Widget2(),
],
),
)