出于某种奇怪的原因,在第二次搜索之后,鉴于我已经有一个包含第一个搜索结果的列表,当我单击一个元素时,它会显示来自第一个搜索结果的信息。我不明白为什么。
return Expanded(
child: FutureBuilder(
future: showSearchObject,
builder: (context, AsyncSnapshot<AllTVShowList> snapshot) {
if ( !snapshot.hasData){
...
}
else{
....
return Column(
children: [
Expanded(
child: Container(
height: _height,
child: ListView.builder(
scrollDirection: Axis.vertical,
shrinkWrap: true,
itemCount: snapshot.data.showList.length,
itemBuilder: (context, int index) {
print(snapshot.data.showList[index].name);
return ShowCard(show: snapshot.data.showList[index]);
},
),
),
),
],
);
}
}
),
);