Skip to content

Commit 6f15325

Browse files
committed
recent dms: Let last item scroll 90px up from bottom to make room for a FAB
We're about to add a "New DM" FAB, and this will ensure that the user can scoot the last few recent-DM items out from under that FAB.
1 parent 834834b commit 6f15325

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/widgets/recent_dm_conversations.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ class _RecentDmConversationsPageBodyState extends State<RecentDmConversationsPag
5353
// Don't pad the bottom here; we want the list content to do that.
5454
bottom: false,
5555
child: ListView.builder(
56+
padding: EdgeInsets.only(bottom: 90),
5657
itemCount: sorted.length,
5758
itemBuilder: (context, index) {
5859
final narrow = sorted[index];

0 commit comments

Comments
 (0)