Skip to content

Commit d54c65d

Browse files
committed
wip scroll: Show start of latest message if long, instead of end; TODO test
This makes our first payoff in actual UX from having the message list split into two back-to-back slivers! With this change, if you open a message list and the latest message is very tall, the list starts out scrolled so that you can see the top of that latest message -- plus a bit of context above it (25% of the viewport's height). Previously the list would always start out scrolled to the end, so you'd have to scroll up in order to read even the one latest message from the beginning. In addition to a small UX improvement now, this makes a preview of behavior we'll want to have when the bottom sliver starts at the first unread message, and may have many messages after that. This new behavior is nice already with one message, if the message happens to be very tall; but it'll become critical when the bottom sliver is routinely many screenfuls tall.
1 parent 17c1fea commit d54c65d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/widgets/scrolling.dart

+3-2
Original file line numberDiff line numberDiff line change
@@ -330,10 +330,11 @@ class MessageListScrollPosition extends ScrollPositionWithSingleContext {
330330

331331
if (initial) {
332332
// The list is being laid out for the first time.
333-
// Start out scrolled to the end.
333+
// Start out scrolled down so the bottom sliver (the new messages)
334+
// occupies 75% of the viewport, or to the end if it's shorter than that.
334335
// TODO what if the next _attemptLayout iteration finds more items below
335336
// and makes maxScrollExtent bigger?
336-
correctPixels(this.maxScrollExtent);
337+
correctPixels(math.min(0.75 * viewportDimension, this.maxScrollExtent));
337338
changed = true;
338339
} else if (wasAtEnd && !_isAtEnd) {
339340
// The list was scrolled to the end before this layout round.

0 commit comments

Comments
 (0)