From 9bccbc786fa3c0e23c7e9f2adc739b59cf50a3ea Mon Sep 17 00:00:00 2001 From: Krille Date: Sun, 4 Jun 2023 11:14:06 +0200 Subject: [PATCH] chore: Follow up scrolldownbutton style --- lib/pages/chat/chat_view.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/pages/chat/chat_view.dart b/lib/pages/chat/chat_view.dart index c72a15446..39865f7e0 100644 --- a/lib/pages/chat/chat_view.dart +++ b/lib/pages/chat/chat_view.dart @@ -191,14 +191,13 @@ class ChatView extends StatelessWidget { title: ChatAppBarTitle(controller), actions: _appBarActions(context), ), - floatingActionButtonLocation: - FloatingActionButtonLocation.centerFloat, floatingActionButton: controller.showScrollDownButton && controller.selectedEvents.isEmpty ? Padding( padding: const EdgeInsets.only(bottom: 56.0), child: FloatingActionButton( onPressed: controller.scrollDown, + heroTag: null, mini: true, child: const Icon(Icons.arrow_downward_outlined), ),