我在使用时遇到了麻烦,TextField
因此AppBar
用户可以像使用搜索栏一样输入输入。我需要接受用户输入并对其进行处理,因此它不是我的应用程序中的搜索。这就是为什么使用TextField
.
现在,我已经成功地在TextField
我的AppBar
. 问题是它TextField
是一个正方形,没有足够的空间,所以你可以看到你在写什么。
链接到它的样子:
在代码中,它是这样制作的:
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Myseum',
theme: new ThemeData(
primarySwatch: Colors.blue,
fontFamily: 'Raleway',
),
home: Scaffold(
appBar: AppBar(
centerTitle: true,
title: Text(
"Myseum",
style: TextStyle(
fontFamily: 'Raleway',
fontStyle: FontStyle.italic,
fontSize: 25,
),
),
leading: prefix0.TextBox(), // TextBox is the widget I made.
backgroundColor: Colors.black,
),
现在小部件TextBox()
class TextBox extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
alignment: Alignment.centerLeft,
color: Colors.white,
child: TextField(
decoration:
InputDecoration(border: InputBorder.none, hintText: 'Search'),
),
);
}
}