如何在 flutter 中实现带滑动刷新的 TabBarView?

How to implement TabBarView with swipe to refresh in flutter?

我想在 flutter 中使用标签栏视图实现滑动刷新或拉动刷新...任何建议

使用 RefreshIndicator 参考 https://medium.com/codechai/adding-swipe-to-refresh-to-flutter-app-b234534f39a7

RefreshIndicator(
          onRefresh: _pullRefresh,
          child:<<your child>>