diff --git a/lib/ui/dashboard/dashboard_view.dart b/lib/ui/dashboard/dashboard_view.dart index de64ae41e..e91f93f07 100644 --- a/lib/ui/dashboard/dashboard_view.dart +++ b/lib/ui/dashboard/dashboard_view.dart @@ -140,16 +140,19 @@ class CustomTabBarView extends StatelessWidget { }); } - return RefreshIndicator( - onRefresh: () => viewModel.onRefreshed(context), - child: TabBarView( - controller: controller, - children: [ - DashboardPanels( - viewModel: viewModel, - ), - DashboardActivity(viewModel: viewModel), - ], - )); + return TabBarView( + controller: controller, + children: [ + RefreshIndicator( + onRefresh: () => viewModel.onRefreshed(context), + child: DashboardPanels( + viewModel: viewModel, + ), + ), + RefreshIndicator( + onRefresh: () => viewModel.onRefreshed(context), + child: DashboardActivity(viewModel: viewModel)), + ], + ); } }