diff --git a/lib/ui/screens/notifications_screen.dart b/lib/ui/screens/notifications_screen.dart index de95ec4..5052a8b 100644 --- a/lib/ui/screens/notifications_screen.dart +++ b/lib/ui/screens/notifications_screen.dart @@ -76,27 +76,27 @@ class _NotificationsScreenState extends State { child: CircularProgressIndicator(), ); - return Column( - children: [ - Expanded( - child: Stack(children: [ - RefreshIndicator( - key: _refreshKey, - child: _buildBody(), - onRefresh: _loadList, - ), - // Add conversation button - Positioned( - right: 20.0, - bottom: 20.0, - child: FloatingActionButton( - onPressed: () => _deleteAllNotifications(), - child: Icon(Icons.delete), - ), - ), - ]), - ) - ], + return Container( + height: double.infinity, + child: Stack(children: [ + Container( + height: double.infinity, + child: RefreshIndicator( + key: _refreshKey, + child: _buildBody(), + onRefresh: _loadList, + ), + ), + // Add conversation button + Positioned( + right: 20.0, + bottom: 20.0, + child: FloatingActionButton( + onPressed: () => _deleteAllNotifications(), + child: Icon(Icons.delete), + ), + ), + ]), ); }