diff --git a/lib/widgets/inbox.dart b/lib/widgets/inbox.dart index 0f6a5c75a1..163175e78f 100644 --- a/lib/widgets/inbox.dart +++ b/lib/widgets/inbox.dart @@ -160,9 +160,7 @@ class _InboxPageState extends State with PerAccountStoreAwareStat sections.add(_StreamSectionData(streamId, countInStream, streamHasMention, topicItems)); } - return SafeArea( - // Don't pad the bottom here; we want the list content to do that. - bottom: false, + return SafeArea( // horizontal insets child: StickyHeaderListView.builder( itemCount: sections.length, itemBuilder: (context, index) { diff --git a/lib/widgets/recent_dm_conversations.dart b/lib/widgets/recent_dm_conversations.dart index 982dde4f08..04c4ca9c6b 100644 --- a/lib/widgets/recent_dm_conversations.dart +++ b/lib/widgets/recent_dm_conversations.dart @@ -49,9 +49,7 @@ class _RecentDmConversationsPageBodyState extends State wit _sortSubs(pinned); _sortSubs(unpinned); - return SafeArea( - // Don't pad the bottom here; we want the list content to do that. + return SafeArea( // horizontal insets bottom: false, child: CustomScrollView( slivers: [ @@ -111,9 +110,6 @@ class _SubscriptionListPageBodyState extends State wit ], // TODO(#188): add button leading to "All Streams" page with ability to subscribe - - // This ensures last item in scrollable can settle in an unobstructed area. - const SliverSafeArea(sliver: SliverToBoxAdapter(child: SizedBox.shrink())), ])); } }