私はフラッター/ダートに比較的慣れていないので、ページの 1 つで書式設定を機能させようとしています。上部に検索バーがあり、その後にリスト (Firestore からの情報がいっぱい) が続き、リストだけでなく一緒にスクロールしたいと考えています。
これまでのコードのセクションは次のとおりです。
return Column (children: <Widget>[
TextField(
controller: _controller,
onSubmitted: (String value) async {
await showDialog<void>(
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: const Text('Thanks!'),
content: Text('You typed "$value".'),
actions: <Widget>[
FlatButton(
onPressed: () {
Navigator.pop(context);
},
child: const Text('OK'),
),
],
);
},
);
}),
Expanded(child: buildLearnCards(context))
]);
}
Widget buildLearnCards(BuildContext context) {
return StreamBuilder(
これについてどうすればよいですか?