diff --git a/lib/ui/routes/user_page_route.dart b/lib/ui/routes/user_page_route.dart index 095e0dc..e456f65 100644 --- a/lib/ui/routes/user_page_route.dart +++ b/lib/ui/routes/user_page_route.dart @@ -79,8 +79,11 @@ class _UserPageRouteState extends State { if (_status == _PageStatus.ERROR) return _buildError(); return Scaffold( - body: CustomScrollView( - slivers: [_buildHeader(), _buildBody()], + body: RefreshIndicator( + child: CustomScrollView( + slivers: [_buildHeader(), _buildBody()], + ), + onRefresh: _getUserInfo, ), ); }