Search code examples
androidflutterswiperefreshlayout

How to implement TabBarView with swipe to refresh in flutter?


I want to implement swipe to refresh or pull to refresh with tab bar view in flutter...any suggest


Solution

  • Use RefreshIndicator Refer https://medium.com/codechai/adding-swipe-to-refresh-to-flutter-app-b234534f39a7

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