以下のコードは、ファイアストアからデータを呼び出して表示するために私と一緒にうまく機能しています:
return ListView(
padding: const EdgeInsets.only(top: 20.0),
children: snapshot.map((data) => _buildListItem(context, data)).toList(),
);
しかし、それを列に入れようとした場合、その上に別のウィジェットを追加すると、失敗して次のようになりますstack overflow
:
return Column(
children: <Widget>[
Text('Hellow'),
ListView(
padding: const EdgeInsets.only(top: 20.0),
children: snapshot.map((data) => _buildListItem(context, data)).toList(),
)]);