长话短说,对您的ListView或其祖先之一使用PageStorageKey(),在您的情况下为Container小部件:
child: new Container( key: new PageStorageKey(page.country), child: new Newsfeed(country: page.country),),
在这里查看详细信息:
https://docs.flutter.io/flutter/widgets/PageStorageKey-class.html
https://docs.flutter.io/flutter/widgets/PageStorage-class.html
https://docs.flutter.io/flutter/widgets/ScrollView/controller.html



