From c962c56cb7a5fbd6c3502e157c150b0f066ca86b Mon Sep 17 00:00:00 2001 From: avashilling <165050625+avashilling@users.noreply.github.com> Date: Wed, 22 Oct 2025 14:11:22 -0400 Subject: [PATCH] remove course list bottom padding (#4497) to mimic chat list and allow each scrollable widget to reach the bottom of the screen --- lib/pangea/chat_settings/pages/pangea_room_details.dart | 3 ++- lib/pangea/course_chats/course_chats_view.dart | 7 ++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/pangea/chat_settings/pages/pangea_room_details.dart b/lib/pangea/chat_settings/pages/pangea_room_details.dart index f6bf5b4a8..497a8493d 100644 --- a/lib/pangea/chat_settings/pages/pangea_room_details.dart +++ b/lib/pangea/chat_settings/pages/pangea_room_details.dart @@ -41,7 +41,8 @@ class PangeaRoomDetailsView extends StatelessWidget { const Center(child: BackButton()), ), body: Padding( - padding: const EdgeInsetsGeometry.all(16.0), + padding: const EdgeInsetsGeometry.only( + top: 16.0, left: 16.0, right: 16.0), child: MaxWidthBody( maxWidth: 900, showBorder: false, diff --git a/lib/pangea/course_chats/course_chats_view.dart b/lib/pangea/course_chats/course_chats_view.dart index 99f077c15..a2061c978 100644 --- a/lib/pangea/course_chats/course_chats_view.dart +++ b/lib/pangea/course_chats/course_chats_view.dart @@ -51,9 +51,10 @@ class CourseChatsView extends StatelessWidget { final isColumnMode = FluffyThemes.isColumnMode(context); return Padding( padding: isColumnMode - ? const EdgeInsets.symmetric( - vertical: 12.0, - horizontal: 8.0, + ? const EdgeInsets.only( + top: 12.0, + left: 8.0, + right: 8.0, ) : const EdgeInsets.all(0.0), child: ListView.builder(