We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bd21e6 commit 627515bCopy full SHA for 627515b
lib/widgets/message_list.dart
@@ -250,9 +250,12 @@ class _MessageListState extends State<MessageList> with PerAccountStoreAwareStat
250
Positioned(
251
bottom: 0,
252
right: 0,
253
- child: ScrollToBottomButton(
254
- scrollController: scrollController,
255
- visibleValue: _scrollToBottomVisibleValue)),
+ // TODO(#311) SafeArea shouldn't be needed if we have a
+ // bottom nav. That will pad the bottom inset.
+ child: SafeArea(
256
+ child: ScrollToBottomButton(
257
+ scrollController: scrollController,
258
+ visibleValue: _scrollToBottomVisibleValue))),
259
])))))));
260
}
261
0 commit comments