From 3ce03ecc2f4c56ea1e782cdb3cbc0aa426aaa87a Mon Sep 17 00:00:00 2001 From: ggurdin Date: Fri, 23 Aug 2024 14:19:22 -0400 Subject: [PATCH] adjust position of points gain animation over new messages --- lib/pages/chat/chat_view.dart | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/pages/chat/chat_view.dart b/lib/pages/chat/chat_view.dart index 689ac4e70..12437c8ac 100644 --- a/lib/pages/chat/chat_view.dart +++ b/lib/pages/chat/chat_view.dart @@ -474,9 +474,12 @@ class ChatView extends StatelessWidget { ), Row( children: [ - const PointsGainedAnimation( - gainColor: Colors.blue, + PointsGainedAnimation( + gainColor: Theme.of(context) + .colorScheme + .onPrimary, ), + const SizedBox(width: 100), ChatFloatingActionButton( controller: controller, ),