diff --git a/lib/screens/activity_list_screen.dart b/lib/screens/activity_list_screen.dart index a6ccf08..8f8b596 100644 --- a/lib/screens/activity_list_screen.dart +++ b/lib/screens/activity_list_screen.dart @@ -119,6 +119,14 @@ class _ActivityListScreenState extends State { @override Widget build(BuildContext context) { + // When showing messages or profile, use their own Scaffold directly + if (_selectedIndex == 3 || _selectedIndex == 4) { + return Scaffold( + backgroundColor: const Color(0xFFFFF8F0), + body: _buildBody(), + bottomNavigationBar: _buildBottomNavigationBar(), + ); + } return Scaffold( backgroundColor: const Color(0xFFFFF8F0), appBar: AppBar( diff --git a/pubspec.yaml b/pubspec.yaml index 99ab626..e63e8ef 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: banxiang_app description: 伴享 -version: 1.1.8+10 +version: 1.1.9+11 environment: sdk: '>=3.0.0 <4.0.0'