From 8cd8f90501c6a2663895d091af777adfd50715fa Mon Sep 17 00:00:00 2001 From: Sorunome Date: Sun, 20 Sep 2020 14:36:53 +0200 Subject: [PATCH] fix: Scroll down button not showing --- lib/views/chat.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/views/chat.dart b/lib/views/chat.dart index f4e6c9b..a40e66e 100644 --- a/lib/views/chat.dart +++ b/lib/views/chat.dart @@ -131,7 +131,7 @@ class _ChatState extends State<_Chat> { @override void initState() { - _scrollController.addListener(() => _updateScrollController); + _scrollController.addListener(_updateScrollController); super.initState(); }